Random Number Generator
Generate one or more random whole numbers from an inclusive range.
Generate between 1 and 100 numbers.
Results
Your random number will appear here.
How it works
Enter the smallest and largest integers, choose a quantity, and select whether repeats are allowed. Both endpoints are included, so a range of -2 to 2 can produce -2, -1, 0, 1, or 2. For example, generating 3 numbers from 1 to 10 might return 7, 1, and 9.
Results are created in your browser using crypto.getRandomValues()and unbiased rejection sampling. Nothing is sent to a server.