#RandomName: Produce a random number.Format: #Random(range!, dest!)This command produces a random number and places it in a variable. range! is the range of the random number. For example, if range! were 100, then the random number would be between 1 and 100.dest! is the numerical variable to which the number should be put.Example:* Show 5 random numbers.#For (num!=1; num!<=5; num!=num!+1){ #Random(100,my_number!) #Show(my_number!)} Related Commands:None