Random Number Generator
Generate a random whole number between a min and max value.
Related tools
How it works
- 1
Enter a min and max value
The range you want the number picked from.
- 2
Click Generate
A random whole number in that range is picked instantly.
- 3
Generate again anytime
Each click picks a new independent number.
FAQ
- Is the min/max range inclusive?
- Yes — both the minimum and maximum values themselves can be generated.
- What if I enter a min bigger than the max?
- They are automatically swapped so the range still makes sense.
- How random is the result?
- It is generated with the browser's cryptographically secure crypto.getRandomValues(), not a simple pseudo-random Math.random().
