Generate random numbers, pick lottery numbers, or flip a coin.
This generator uses the browser's built-in Math.random() function, which provides a pseudorandom number suitable for casual use like games, picking names, or settling debates. It is not suitable for cryptographic purposes. For cryptographically secure random numbers, use window.crypto.getRandomValues().
Random number generators are perfect for: picking raffle winners, deciding where to eat, rolling dice for tabletop games, generating test data, picking lottery numbers (for fun, not a winning strategy), settling arguments, and assigning random groups.