TOOLBOX

Random Number Generator

Random number generator

Pick random numbers between any minimum and maximum (both inclusive), one or many at a time. Choose unique draws (each number at most once, like raffle tickets) or repeatable (repeats allowed, like dice), and integers or decimals. Set your range and generate below.

Frequently asked questions

How does it work?
It uses your browser's random function to pick numbers evenly across your range. Set min, max, and count; optionally keep them unique.
Generate a number between two values?
Set min and max to those values and generate — both ends are inclusive. Raise the count to draw several at once.
Unique vs repeatable?
Repeatable can return the same number twice (like dice); unique returns each at most once (like raffle tickets), needing a range at least as big as the count.

Uses the browser's Math.random — fine for everyday picks, not for cryptographic or security use.