use the random function.
for example if i want a random number between 1 and 100 -
random(100) this will return a random value from 1 -100
- This will return a decimal value though.
If you want a integer(whole number) ---
int(random(100) -- Will return a whole number between 1 - 100