How to use Random Number Generator — Free Online, Pick a Range
- 1Pick what you want to generate and how many.
- 2Set the length or number range, and any formatting options.
- 3Copy the whole list, download it as a text file, or press Regenerate for a fresh set.
About Random Number Generator
Most random number tools quietly get the maths slightly wrong. Taking a random value modulo the range size is the obvious approach and it skews the result, because the range rarely divides evenly into the source — the lowest numbers come up marginally more often than the highest.
This generator uses rejection sampling instead: values that would fall into the uneven tail are discarded and redrawn, so every number in your range has exactly the same chance. For a dice roll nobody would notice; for a prize draw it is the difference between fair and not.
The "no repeats" option shuffles the entire range and takes from the top, which is the correct way to draw without replacement.