Is this random number generator secure?
Browser Secure mode uses crypto.getRandomValues() from the Web Crypto API, which is intended for cryptographic-quality pseudorandomness. That makes it a stronger choice than ordinary Math.random() for general-purpose random generation.
What is atmospheric randomness?
The optional Atmospheric Noise mode requests values from RANDOM.ORG, a service that derives randomness from atmospheric radio noise. CloudByAlex relays the numeric request through a Cloudflare Worker.
Can I generate multiple random numbers?
Yes. Set the minimum, maximum and quantity. You can generate up to 20 values at a time with this interface.
Can I pick a random name from a list?
Yes. Open List Picker, put one option on each line, and press Generate. The selected entry appears in the result panel and is also added to the recent-results list.
Is this the same as Math.random()?
No. Browser Secure mode uses the Web Crypto API instead of Math.random(). Web Crypto is designed for security-sensitive randomness and provides a stronger source for this kind of utility.
Can I use it for a regulated lottery or gambling system?
This tool is not designed or certified for regulated gambling, audited lotteries or other high-stakes applications. Those uses need specialized systems, controls and any required legal or regulatory approvals.