What this random number generator does
A random number generator draws values by chance within limits you set. This number generator supports inclusive minimum and maximum bounds, batch output for spreadsheets, and a one-click picker that behaves like a dice roller when your range is 1–6.
Unlike toy scripts that rely on Math.random(), this rng generator uses crypto.getRandomValues — the same API browsers expose for security-sensitive work. That makes it a practical generator of random numbers for giveaways, QA fixtures, and classroom demos.
You can generate numbers as integers or decimals, request unique values without duplicates, and copy results instantly. Need alphanumeric tokens instead? Switch to the Random String Generator — numbers and strings are separate tools so each page stays focused.