Generate a random number
* This can also be achieved using the math function.
Arguments
Argument | Description |
---|---|
1 | The lowest value to return (default: 0) |
2 | The highest value to return |
Generate a random number
rand
{{rand(<min>,<max>)}}
* This can also be achieved using the math function.
Arguments
Argument | Description |
---|---|
1 | The lowest value to return (default: 0) |
2 | The highest value to return |
rand
{{rand()}}
{{rand(1,112)}}
Output:
1783556905 (A random number, starting from 0)
23 (A random number between 1 and 112)