Global num Method
Math.random() is not recommended normally for security, BUT we have a global num
method you can use for exactly this
// num(min, max, dp=0)num(0, 10) // random integer between 0 and 10num(100, 1000, 2) // random float between 100 and 1000 with 2 decimal places