Home/Number Generator

Random Number Generator

Whole numbers between any two values you choose. One number, or a set of them — every one different, or drawn independently, sorted or in the order they came out.

The numbers

Press Generate

The range

Options
Presets

Recent results

  1. Nothing yet.

Unbiased across the whole range

Turning random bits into a number in a range is where most generators quietly go wrong: taking the remainder makes the low end of the range come up slightly more often.

This one discards the values that would skew it and draws again, so 100 is exactly as likely as 1 — the difference is invisible in a single draw and obvious over a few million.

Number sets and draws

Turn on Every number different and you get a draw rather than a series of independent picks: six numbers from 1 to 49, none of them repeated.

Leave it off when each number should ignore the ones before it — simulating dice, sampling, or anything where a repeat is a real outcome rather than a mistake.

More generators