So I'm making a script that requires the function to return two separate values. How would I be able to store those two values? I know I can store one value if I define a variable for the function, but I don't know how to do it for more than one value. Thanks Kevin.
``` local function twoReturnValues() return "Hello", "world!" end
local return1, return2 = twoReturnValues()
print(return1) --> Hello print(return2) --> world! ```