Guys im trying to learn return statements but im having a difficult time understanding even the slighest bit of it like what it is or what it does and why its used can someone help out? this is the code i saw in the video but i honestly dont get it
''''lua
local function addition(number1, number2)
local result = number1 + number2
return result
end
local printResult = addition(8, 2)