Hey, Here is the print script:
1 | RandomNumber = random.math( 1 , 2 ) |
2 | print (RandomNumber) |
Can someone help me in determining why it won't work? Thanks!
It wasn't printing because the script has an error.
line 1 should be :
math.random(1,2)
Where it says random.math(1, 2)
You need to change that to math.random(1, 2)