Random Number Generator

Set a range and how many numbers you need — with or without repeats.

Result
42
7
88
15
63

Uses your browser's built-in random number source — fine for games, raffles, and sampling, not for cryptographic purposes.

Frequently asked questions

What's the difference between with and without repeats?

Without repeats (unique) works like drawing raffle tickets from a hat — once a number comes up, it's removed from consideration. With repeats works like rolling a die each time — any number can come up again, independent of previous results.

Is this suitable for anything security-sensitive?

No — this uses your browser's standard random function, which is fine for games, raffles, and general sampling, but not suitable for generating passwords, encryption keys, or anything requiring cryptographic randomness.