Stop overthinking small choices
When you genuinely cannot decide between equally good options, a Random Decision Generator removes the friction. List the candidates, hit the button, and accept whatever fate returns. It is ideal for picking a lunch spot, choosing which task to tackle next, settling a movie debate, or breaking any tie where every option is acceptable.
How it works
The tool reads your text and splits it on newlines and commas, trims surrounding whitespace, and discards empty entries to build a clean list of options. When you press the button, it draws a random index with Math.random() scaled to the list length, which gives every option an identical probability of 1 / n. The brief animation cycles through a handful of random options with a gentle slowdown for suspense, but the value it settles on is an independent uniform draw — the animation does not bias the outcome. Because the selection is uniform and unweighted, the generator is genuinely fair.
Tips and notes
Add or remove options at any time; the displayed percentage updates instantly so you always know the odds. If you want one option to be more likely, list it more than once — duplicates each count as separate equal-weight entries, which is a simple way to add manual bias. Everything runs locally in your browser, so your list is never uploaded.