Random Tools
A set of random tools for everyday decisions: roll dice, flip a coin, pick a random item from a list, or conduct a random draw. All randomness is generated locally in your browser.
FAQ
Q: How random is this tool?
A: This tool uses Math.random(), which is a pseudo-random number generator (PRNG) provided by your browser. It is sufficient for everyday use but not suitable for cryptographic or security purposes.
Q: What is the difference between Random Pick and Draw?
A: Random Pick selects one item from the list (with replacement — the same item can be picked again). Draw selects multiple unique items from the list (without replacement — like drawing names from a hat).