Random Number Generator
The random number generator produces whole numbers in any range using the browser cryptographic random source rather than Math.random. It uses rejection sampling so every value in the range is equally likely, and can generate unique values only — a draw without replacement, for picking winners or sampling rows.
Set your options and press the generate button.
Results update automatically and are calculated on your device. Nothing you type is sent to a server.
Runs in your browser. Processing happens entirely in your browser. Nothing you enter is sent to Delimiter.live.
How to use the Random Number Generator
- Set the minimum and maximum — both ends are included.
- Choose how many numbers you need.
- Turn on "No repeats" for a draw without replacement, such as picking winners.
- Press Generate, then copy or download the list.
Example
1 to 6, ten numbers
4, 2, 6, 1, 3, 6, 5, 2, 4, 1
Common use cases
- Picking winners from a numbered list of entries.
- Selecting a random sample of rows to check from a large export.
- Generating test data with values in a known range.
- Choosing a random port, delay or identifier during development.
Limitations and things to watch for
- Whole numbers only. Decimal values are not generated, because the precision and rounding rules would need to be specified and there is no obvious default.
- Unique mode cannot return more numbers than the range contains, and asking for it reports the mismatch rather than looping forever.
- Results are not reproducible. There is no seed option, because a seeded generator would no longer be unpredictable — which is the point of using the cryptographic source.