ToyTools Guide

Letting a Random Picker Settle a Stuck Decision

How to pick one option or rank them all, why a comma-separated line breaks a picker, and when handing a decision to chance is the right move.

5 min read Updated Aug 2026

Quick Answer

Put one option on each line and press. The picker draws a winner.

For example, Input: five restaurants, one per line. Output: one of them, chosen with an equal share for each. Switch the mode and instead of a winner you get the whole list shuffled into a running order.

The random choice picker also watches for the mistake that makes a picker lie. Paste everything on one line with commas and it holds a single option, so it picks that one confidently. It says so and offers to split the line.

Pick For Me →

What is a random choice picker?

A random choice picker is a decision maker with no opinion. It takes a list of options and returns one, with every option holding the same share.

That sounds trivial, but the useful part is the neutrality. A group deciding where to eat is not short of information. It is short of a way to stop discussing, and a picker supplies that without anybody having to be the one who insisted.

Unlike a spinning wheel, there is no animation to sit through and no setup screen. Paste, press, done, which is the difference between a tool you use once and one you use every week.

How does the picker work?

It shuffles, then it reads off the top.

The shuffle is a Fisher-Yates pass driven by your browser's cryptographic random number generator. Each swap draws a fresh index, and the tool throws away the values that would tilt that index rather than reaching for a remainder. Every ordering of your list is therefore equally likely.

Picking one winner takes the first entry. Picking three takes the first three, so they come out distinct. Ranking mode takes all of them. For example, Input: four demo slots. Output: four names numbered one to four, each appearing exactly once.

Why did my comma-separated list count as one option?

Because the picker splits on line breaks, and your options never had any.

This is the failure worth naming, because it produces a wrong answer that looks right. A list of one gets picked with total certainty, and there is nothing on screen to suggest the tool misread you. So the picker checks: a single line holding commas, semicolons, pipes or the word or is almost never one option, and it offers the split in one tap.

It stops checking the moment a second line exists. That restraint is deliberate. An option genuinely containing a comma, such as a restaurant called Nando's, Camden, stays safe as soon as it has a neighbour, because guessing there would break more lists than it fixed.

Should I pick one option or rank them all?

Pick one when the decision is the point. Rank them all when the order is the point.

A single pick answers what should I eat, which task to start, or which film tonight. Ranking answers who goes first, and it answers it once instead of forcing a fresh draw for every slot. Ranking also gives you a fallback: the second name is your plan B, already chosen, and nobody has to argue about whether the tiebreak was fair.

Instead of ranking, some people draw repeatedly and remove the winner by hand each time. That works, but it is slower and it lets a mistake creep in when a name gets deleted twice.

Can I make one option more likely?

Yes, by listing it more than once. Two lines for the same option gives it two slots, therefore double the share.

That is a legitimate trick for a weighted draw, and it is also the common mistake behind a picker that seems to favour one answer. A duplicate that arrived by accident does exactly the same thing as one you added on purpose. If the odds look off, check the list for repeats first, or run it through the duplicate line remover and paste the clean version back.

Is it reasonable to decide something by chance?

For close calls, yes, and there is evidence behind it.

Economists have tested handing stuck decisions to a coin. People who followed the result reported being happier months later than the ones who kept deliberating. Chance cannot tell you which option is better, but it does end a debate that was costing more than the gap between the options.

There is a second use, and it works even when you ignore the result. Draw once, then notice how you feel about what came up. Disappointment is a preference you already held and could not reach. Do not re-roll five times hoping for the answer you wanted, because by then you have told yourself what it was.

When the list is down to two, the coin flipper is quicker. When the list is people rather than options, use the random name picker, which warns you about duplicate entries. Nothing you paste here is uploaded or stored off your device.

You May Also Need

You may also need

Next steps

Alternatives

Continue Learning