What is the random number command ? I tried everything can’t find it
to generate a random number u just need one of these…
$(eval let min=0,max=100;Math.floor(Math.random()*(1+max-min))+min)
and u can set the minimum and maximum numbers after the “let” (currently set to 0 and 100)
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.