Random Number Generator
Generate random numbers in any range. Set a minimum and maximum, choose how many numbers you need and whether they should be integers or decimals, then generate. There is also an option for unique numbers with no duplicates, handy for draws and raffles.
Result
—
How it works
Each number is drawn uniformly from the range you set, so every value between the minimum and maximum has an equal chance. When you ask for unique integers, the generator shuffles the available numbers and takes the first few, which guarantees no repeats.
Frequently asked questions
Are the numbers truly random?
They use your browser built-in random generator, which is suitable for games, draws, sampling and everyday use, though not for cryptographic security.
Can I avoid duplicate numbers?
Yes. Turn on the no-duplicates option for integers, for example to draw unique raffle numbers.
Can it generate decimals?
Yes. Switch the type to decimals to get random numbers with decimal places in your range.