How to use the Random Number Generator
- Enter a minimum and maximum value for the range.
- Enter how many random numbers you want generated.
- Choose whether duplicate values should be allowed.
- Click generate to get your list of random numbers, and copy them with one click.
How randomness is generated
The generator picks integers uniformly from the inclusive range [min, max] using the browser's cryptographically secure random number source when available, falling back to Math.random() otherwise. When duplicates are disallowed, it draws without replacement — meaning each generated number is unique until the available range is exhausted.