Complete guide
Random number generator with unique-number mode
Choose an inclusive minimum and maximum, request up to 100 integers and decide whether repeats are allowed. Every generated list is shown in order and can be reproduced from its shared link.
How to generate random numbers
Enter whole-number bounds, choose the list length and press Generate numbers. The first generated value appears as the main result while the full ordered list appears below.
- Set the inclusive minimum.
- Set the inclusive maximum.
- Choose 1–100 results.
- Turn duplicates off for a sample without replacement.
Inclusive ranges
Both endpoints can appear. A range from 1 to 10 contains ten possible integers, while −5 to 5 contains eleven because zero is included.
range size = maximum − minimum + 1Duplicates and unique sampling
When duplicates are allowed, each draw is independent and a value may appear more than once. With duplicates disabled, values are removed after selection. The requested count cannot exceed the range size.
Limits and secure use
The generator limits lists to 100 values and bounds to plus or minus one billion so the output stays inspectable. It is intended for ordinary selection and simulation, not cryptographic secrets, regulated drawings or audited gambling.
Common range examples
| Use | Minimum | Maximum | Possible integers |
|---|---|---|---|
| Standard die | 1 | 6 | 6 |
| Percentage | 0 | 100 | 101 |
| Signed small range | −10 | 10 | 21 |
| Playing-card position | 1 | 52 | 52 |
Frequently asked questions
Are the minimum and maximum included?
Yes. Either endpoint may be generated.
Can I generate numbers without repeats?
Yes. Choose No under Allow duplicates; the requested count must fit inside the range.
Can the same shared link reproduce a list?
Yes. Generator settings and the seed are included in the link.
Can I generate negative integers?
Yes. The supported bounds extend from −1,000,000,000 to 1,000,000,000.
Is this suitable for passwords or gambling?
No. Use a dedicated audited system for security credentials, lotteries or regulated gambling.
What to keep in mind
Useful for games, sampling and classroom work. This browser tool is not certified for lotteries, gambling or security key generation.
Results display up to 8 decimal places; exported numbers preserve calculation precision. This is a calculation summary, not an official certificate.