Random Number List Generator
Draw several random integers in one go. Choose whether repeats are allowed, and copy the whole list as a single block of text.
Generate
How the Random Number List Generator works
This tool extends the single-number generator to produce many values in one pass. In unique mode, it builds the full list of possible integers in your range, shuffles that list with a Fisher–Yates shuffle powered by cryptographically secure randomness, and returns the first however-many entries — the standard, unbiased way to draw a lottery-style set without replacement.
In repeats-allowed mode, each number is drawn independently, so the same value can appear more than once, similar to rolling several dice. Choose the mode that matches your real-world process: raffle number draws are usually unique, while simulation and sampling tasks often call for independent repeats.
How to use it
Frequently asked questions
What happens if I ask for more unique numbers than the range contains?
Xrandom automatically caps the count to the size of your range, since you can't draw more unique values than exist.
Is the order of the list meaningful?
No — the order reflects the shuffle, not any ranking. If you need a sorted list, copy the result and sort it in a spreadsheet.
Can I use this for a lottery ticket?
Yes, this is exactly the pattern used for lottery quick-picks: unique numbers, no repeats, drawn from your game's number range.