Why do the runs of this function output the same number every time, and how would I fix?
function randomNumber()
number = math.random()
print(number)
end
randomNumber()
randomNumber()
EDIT: I want to be able to run this function twice, like this, and get a unique random number both times.