local number = math.random(1, 10)
# change 1 to be the smallest possible number
# change 10 to the be the biggest possible number
local randomNumber = math.random(0, NUMBERLIMIT) -- Replace NUMBERLIMIT with a random number
print(randomNumber)
local string = {
"Mom",
"Dad"
}
local randomString = string(math.random(0, #string))
print(randomString)