Random Number Generator

Your Numbers

39, 53, 48, 29, 67

Compare Calculations

Downloads

Includes your inputs and results for this calculation, plus any additional calculations you've compared.

How This Calculator Works

A random number generator picks one or more whole numbers uniformly at random from a range you choose. Enter a minimum and maximum, how many numbers you want, and whether repeats are allowed, and this calculator generates them instantly — useful for picking a raffle or giveaway winner, settling a decision, drawing lottery-style numbers, or generating test data.

Unlike every other calculator on this site, the result here is deliberately not reproducible from the inputs alone — a shared link restores your settings (minimum, maximum, count, and whether repeats are allowed) so a friend can generate their own numbers with the same setup, but it won’t hand them the exact same numbers you got. That’s the entire point of a random number generator: running it again is supposed to give you something new.

How It Works Under the Hood

Each number is chosen uniformly at random from every whole number between your minimum and maximum, inclusive — every value in the range has an equal chance of being picked. When “no repeated numbers” is checked, this calculator keeps drawing until it has enough distinct values, the same approach as physically drawing numbered balls from a bag without putting them back.

Common Uses

  • Picking a winner from a numbered list of raffle or giveaway entries.
  • Drawing lottery-style numbers for games that pick several numbers from a range.
  • Settling a decision — rolling a virtual die (1-6), flipping a coin (1-2), or picking between a few options.
  • Generating sample or test data for a spreadsheet or a coding project.

Source: Wikipedia: Random Number Generation.

Frequently Asked Questions

Can I generate numbers without repeats?

Yes — check "No repeated numbers" to generate a set of distinct values, useful for picking multiple raffle winners or drawing lottery-style numbers where the same number shouldn't appear twice.

Will a shared link give someone the same numbers I got?

No — a shared link restores your settings (minimum, maximum, count, and whether repeats are allowed) so someone else can generate their own numbers with the same setup, but the actual numbers generated are different every time by design. That's the entire point of a random number generator.

Is this truly random?

It uses your browser's built-in random number generator, which is suitable for everyday uses like picking a winner or settling a decision. It isn't a cryptographically secure random source, so it shouldn't be used for security-sensitive purposes like generating passwords or encryption keys.