How to use this generator
- Set the minimum and maximum values.
- Choose how many numbers to generate.
- 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.