Random Number Generator
Generate random numbers in a range, with no-duplicates and sort options.
Numbers are drawn with the browser's pseudo-random generator β great for raffles, games and sampling, but not for cryptographic keys. Both ends are inclusive.
Generate one or many random numbers between any minimum and maximum (both inclusive). Choose how many you need, optionally force them to be unique (great for raffles and lottery-style draws), and sort the results. Everything runs in your browser with no signup.
How to use the Random Number Generator
- Set the minimum, maximum and how many numbers you want.
- Optionally tick no-duplicates or sort ascending.
- Click Generate and copy the result.
Frequently asked questions
Are both the minimum and maximum included?
Yes. The range is inclusive on both ends, so a 1β6 range can return 1 or 6.
Can I get numbers with no repeats?
Tick 'No duplicates'. The generator then draws unique values β as long as the range is at least as large as the count you ask for.
Is it good enough for a giveaway?
Yes for casual raffles and games. It uses the browser's pseudo-random generator, which isn't suitable for cryptographic or high-stakes gambling use.