Free Online Random Number Generator
A number drawer picks integers (or decimals) uniformly from a range you choose, backed by the browser's crypto.getRandomValues for cryptographic randomness.
Your data is processed entirely in your browser and never sent to any server.
How to Use This Generator
- Set the minimum and maximum bounds (both inclusive).
- Set the count for a batch, or leave at 1 for a single draw.
- Toggle Allow duplicates off if you want unique picks (sampling without replacement).
- Click Generate, then Copy to send the result to your clipboard.
What Is a Random Number Generator?
Uniform random integers seed raffles, sample customers for a survey, assign A/B test buckets, pick a winner from a list and generate test fixtures. Decimals (rounded to a precision you set) cover Monte Carlo runs and any task where integers are too coarse.
This generator pulls bytes from crypto.getRandomValues, the browser's cryptographically secure random source. Unlike Math.random, the output is unbiased and unpredictable, suitable for security-adjacent uses (raffles where money is on the line, fair lotteries, picking a single winner from a verified list).
Set the minimum and maximum (both inclusive), optionally request a batch with or without duplicates, and copy the result as plain integers, one per line. Toggle the no-duplicates option when you're sampling without replacement (a fair raffle where each ticket can win once).
Frequently Asked Questions
How random are the numbers?
Can I generate multiple numbers?
What range can I use?
Published by the WeGotEveryTool team. We build and test every tool in-house and update pages when the underlying spec, formula, or recommendation changes.
Reviewed: May 2026. Disclaimer: this tool is provided as-is for general informational use. For decisions with material consequences (medical, legal, financial, security) verify results against a qualified professional source.
Related Random Generators
Generate secure random passwords. Customize length, include symbols, numbers. Strong and memorable options.
Roll virtual dice. d4, d6, d8, d10, d12, d20, or custom. Perfect for tabletop games.
Flip a virtual coin for heads or tails. Fair 50/50. Flip once or multiple times.