Random Number Generator Guide
Learn how to pick fair random numbers for games, raffles, and experiments using the Random Engine.
When to use a random number generator
Random numbers are useful for fair draws, classroom demos, statistics sampling, and quick decisions. Using a cryptographically secure generator ensures results are unbiased.
Choose the right range
- Small ranges: dice rolls, classroom picks, simple games.
- Medium ranges: raffles, team assignments, sampling.
- Large ranges: simulations and research.
Steps to generate numbers
- Set the minimum and maximum values.
- Select how many numbers you want.
- Generate and copy the results.