RERANDOM
Syntax RERANDOM number 
(RERANDOM) 
 
Explanation

RERANDOM makes RANDOM output identical sequences of numbers. Once you use RERANDOM, it will report the same sequence of random numbers as the first time. Its input is the seed to the random number generator. A different seed yields different random numbers. To achieve truly random numbers, use the current time as a seed, using TIME. When RERANDOM is enclosed in parentheses without an argument, it uses the current time as its seed.

Examples RERANDOM ((ITEM 1 TIME) * 3600) + ((ITEM 2 TIME) * 60) + (ITEM 3 TIME) 
REPEAT 4 [PR RANDOM 5] 



1  

TopIndex