Home
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Details for command rand:
* rand <number>{,<number>};
This function returns a number, randomly positioned between 0 and the number you
specify (if you only specify one) and the two numbers you specify if you give it
two.
rand(10) would result in 0,1,2,3,4,5,6,7,8 or 9
rand(2,10) would result in 2,3,4,5,6,7,8,9 or 10