Generate a random number

rand

{{rand(<min>,<max>)}}

* This can also be achieved using the math function.


Arguments

ArgumentDescription
1The lowest value to return (default: 0)
2The highest value to return 

Examples

rand

{{rand()}}
{{rand(1,112)}}


Output:

1783556905 (A random number, starting from 0)
23 (A random number between 1 and 112)