Random Number Generator

Generate random integers in any range, one or many at a time.

Result

How to use this generator

  1. Set the minimum and maximum values.
  2. Choose how many numbers to generate.
  3. Press "Generate again" to get a fresh set.

Example

A range of 1 to 100 with a count of 5 returns five integers such as 42, 7, 91, 18, 63.

How it works

Numbers are drawn with JavaScript's random generator, uniformly distributed within the inclusive range.

Frequently asked questions

Can numbers repeat?

Yes. Each draw is independent, so duplicates can occur in a large count.

Is this cryptographically secure?

No. For passwords or security keys, use a dedicated cryptographic generator instead.