Skip to content

Random Number Generator

Pick random numbers in any range, with or without duplicates.

rand.exe

No numbers generated yet.

How to use Random Number Generator

  1. 01Set the lowest and highest number you want to include — both ends are included.
  2. 02Choose how many numbers to draw and whether duplicates are allowed.
  3. 03Generate, then copy the list if you need it elsewhere.

About Random Number Generator

The numbers come from your browser's cryptographic random source rather than Math.random, and the mapping into your range rejects biased values, so every number in the range is equally likely. That matters for draws and giveaways, where a subtle bias would favor part of the range.

Turn duplicates off when you are drawing distinct things, such as raffle tickets or lottery numbers. Leave them on when each draw should be independent, like simulating dice rolls.

Frequently asked questions

Is this truly random?
It uses the operating system's cryptographic random generator, which is as close to random as software gets.
Can I draw lottery numbers?
Yes. Set your range, choose how many numbers and turn duplicates off.
Are the numbers inclusive of the limits?
Yes, both the minimum and maximum can be drawn.

Related tools and tools