show/hide this revision's text 2 added 198 characters in body

There different types of randomness. Math.random gives you evenly distribute an uniform distribution of numbers. If you want different orders of magnitude, I would suggest using an exponential function .to create what called a power law distribution:

Math.round(Math.exp(Math.random()*Math.log(maxmimum-minimum+1)))+minimum

should give you rougly the same number of 1-digit numbers as 2-digit numbers etcand as 3-digit numbers.

There are also other distributions for random numbers like the normal distribution (also called Gaussian distribution).

show/hide this revision's text 1

There different types of randomness. Math.random gives you evenly distribute numbers. If you want different orders of magnitude, I would suggest using an exponential function.

Math.round(Math.exp(Math.random()*Math.log(maxmimum-minimum+1)))+minimum

should give you rougly the same number of 1-digit numbers as 2-digit numbers etc.