Numbers

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.

Cryptographically secure Instant, in your browser Free, no sign-up

Generate

Your result will appear here

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

1
Choose your range and countSet the minimum, maximum, and how many numbers you need — for a lottery board that might be 6 numbers from 1–49.
2
Decide on repeatsTurn off repeats for lottery-style unique draws, or allow them for dice-style independent rolls.
3
Generate and copyXrandom lists every value; copy the whole set at once for spreadsheets or forms.

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.