Rand ([low value],high value)  

Definition:

Generates a random integer value between the values specified.

Parameter Description:


low value = optional - defaults to 1; lowest number to generate
high value = highest number to generate

Command Description:

Unlike the RND command, this command actually returns only integer values. The low value defaults to 1 if no value is specified. The high value is the highest number that can be randomly generated.

If you need to generate floating point random numbers, use Rnd.

Example:

; Rand example

; Set the randomizer seed for more true random numbers
SeedRnd (MilliSecs())

; Generate random numbers between 1 and 100
For t = 1 To 20
Print Rand(1,100)
Next

Index