-- Chapter 13 example: math.random in its three forms. print(math.random()) -- a float between 0.0 and 1.0 print(math.random(6)) -- whole number from 1 to 6 print(math.random(1, 100)) -- whole number from 1 to 100 -- Run the file a few times and watch the numbers change.