How to use Random Number Generator
- Enter minimum, maximum and how many numbers you need.
- Choose decimals, uniqueness and ordering.
- Click Generate (or Regenerate) and copy the list.
Random Number Generator features
- Integers or decimals in any range, up to 10,000 at a time
- Cryptographically secure by default, seeded and reproducible on demand
- No-duplicates mode with range capacity check
- Ascending, descending or random order; newline, comma or space separators
- Summary statistics (min, max, sum, average)
Random Number Generator example
Five unique lottery numbers
Input:
1–49, count 5, no duplicates, ascendingOutput:
7
12
23
31
44Frequently asked questions about Random Number Generator
Is the randomness secure?
Yes, by default numbers come from crypto.getRandomValues with an unbiased integer algorithm. Providing a seed switches to a deterministic PRNG for reproducible test data.
Can I avoid duplicates?
Tick "No duplicates". The tool checks that the range contains enough distinct values (for example 1–10 cannot give 20 unique integers).
Can I generate decimals?
Yes — set the number of decimal places. Each value is uniformly distributed in the range and rounded to that precision.
How many numbers can I generate?
Up to 10,000 per run, sorted ascending, descending or left in random order.