How to use the Random Number Generator

  1. Enter a minimum and maximum value for the range.
  2. Enter how many random numbers you want generated.
  3. Choose whether duplicate values should be allowed.
  4. 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.