Random Number Generator

Generate random integers (or decimals) inside any range you specify.

All math runs in your browser — nothing is uploadedReviewed & updated: Methodology
Result

Click Generate…

How it works

n = floor(random · (max − min + 1)) + min.

Example

min 1, max 10 → returns something like 7.

Frequently asked questions

Is it truly random?
It uses the browser's crypto-backed pseudo-random source when available.
Can I get unique values?
Yes with a 'no duplicates' option — useful for lottery numbers.
Any bias in the results?
No — the mapping is uniform across the range.
Can I seed it?
This version doesn't accept a seed.

More in Math