Maple HedgehogOriginal postJan 24, 2024What is the random number command ? I tried everything can’t find it
Stellar RaccoonJan 24, 2024to generate a random number u just need one of these...js$(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)