Uses of Random Numbers: From Draws to Verification Codes
Random numbers are widely used for lotteries, sampling, verification codes, games, and decisions. Browsers use pseudo-random algorithms — fine for daily use; cryptography needs a true random source.
Common play
- Draw: pick one from 1–100
- Grouping: generate several unique numbers
- Decision: coin-flip-style binary choice
Dedupe & range
Enable 'unique' to draw several non-repeating numbers; set the range to avoid out-of-bounds.
💡 When indecisive, let a random number choose for you and skip the agonizing.