
melissa brown
4,670 Pointsrandom number inside the loop?
why dont we put the random_number = random.new.rand(5) inside the loop?
2 Answers

Damian Kosowski
19,746 PointsIf you put the expression < random_number = random.new.rand(5) > inside the loop it will generate a different random number on every turn. It would be harder for the contestant ;)

melissa brown
4,670 Pointsthanks