Returns a random integer number located between 2 fixed limits.
Attention this number will be necessarily different at each execution.
Syntax:
1 |
Random(limit1,limit2) |
Example:
getting a random number between -100 and 1000:
1 2 3 |
a = random(-100,1000) return a |