LuckPicker

Tool

Bingo Caller

Call numbers without replacement, track the board, and verify a winning card.

Bingo Caller

Called board

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475

Call numbers one at a time from a 75, 90 or 50-ball game, with every called number staying on a board that does not scroll away.

Nobody has ever seriously disputed whether a bingo number was random. The disputes are always about whether a number was actually called, which is why the visible board matters more here than any property of the draw.

There is a card checker at the bottom: paste the numbers from a claimed card and it tells you immediately which, if any, have not come up.

How the Bingo Caller works — and why it's fair

Calls are drawn without replacement. Each call takes an unbiased uniform index from the numbers not yet called, and that number is then removed from the pool. A repeat is therefore structurally impossible — it is not prevented by a check after the fact, it is prevented by the number no longer being in the bag.

That distinction matters for a game where a repeat would be a genuine failure. A tool that drew independently each time and then checked for duplicates would still be correct, but it would be correct because of a guard rather than because of the process, and the guard is a thing that can be got wrong. Removing the ball is how the physical game does it, and it is how this does it.

Because the pool shrinks, the odds rise call by call. The first call of a 75-ball game is one in 75; the sixtieth is one in 16; the last is a certainty. That is the arithmetic of a draw without replacement, and it is why the tail of a long game speeds up noticeably even though nothing about the tool has changed.

The called board renders every number in the game, marked or unmarked, and stays on screen. This is the part that solves the real problem: a caller who reads out a number and moves on leaves no record, and a disputed card at the end of a game becomes a matter of memory. A board that persists turns that into a five-second check.

The card checker compares a pasted set of numbers against the called set and reports exactly which numbers are still outstanding. It does not know what pattern your game uses — a line, four corners, a full house — so it verifies that every number given has been called, and leaves the pattern judgement to you.

When the Bingo Caller is fair — and when it is not

What it does guarantee

  • A number cannot be called twice, structurally, because it leaves the pool when it is called.
  • Every uncalled number is exactly as likely as every other on the next call.
  • The full called board is visible and persistent, so any call can be verified after the fact.

What it does not

  • It cannot verify a winning pattern. It checks that numbers were called, not that they form a line or a house.
  • There is no undo. A number called by accident stays called, and starting a new game clears the board entirely.
  • The board is a single shared screen, so it verifies the game rather than any individual player's honesty about their card.

Two worked examples

A 75-ball game, 20 calls in

  • 20 numbers are marked on the board and 55 remain in the pool.
  • The next call has a 1-in-55 chance for each remaining number.
  • A player claiming a line needs all five of their numbers among the 20 called — the checker resolves that instantly.

A 90-ball game near the end

  • After 85 calls only 5 numbers remain, so each call is 1-in-5 and then 1-in-4.
  • The pace visibly accelerates because the pool is nearly empty, not because anything changed.
  • The 90th call is a certainty — there is exactly one ball left.

Rooms this is built for

Care homes and community centres are the most demanding setting, and the requirements are almost entirely about legibility rather than randomness: a large current number, a board that does not scroll, and a way to settle a claim without stopping the game. Everything on this page is arranged around those three things.

School and charity fundraisers use it because it removes the equipment problem entirely — a phone connected to a screen replaces a cage, a set of balls and someone to mind them, and the called board is more reliable than the person who was supposed to be writing them down.

Online and hybrid games use the card checker hardest, since a remote player claiming a house cannot show you their card. Pasting their numbers into the checker is a complete verification of the numeric half of the claim.

For a spinning-wheel presentation of numbers rather than a call list, the number wheel covers the same range with a different feel. For a single random number rather than a sequence, the random number generator is simpler.

Frequently asked questions

Can the same number be called twice?

No, and not because of a check — the number is removed from the pool when it is called, so there is nothing to draw twice.

Do the odds change during the game?

Yes. The pool shrinks with every call, so the first call is 1-in-75 and the last is a certainty. That is inherent to drawing without replacement.

Does the checker verify a winning pattern?

No. It confirms that every number on the card has been called. Whether those numbers form a line, corners or a full house is your game's rule, not the tool's.

Can I undo an accidental call?

No. The number stays called, and only a new game clears the board. That is deliberate — an undo would make the board's record unreliable.

Which ball formats are supported?

75-ball, 90-ball and a 50-ball short game. The board resizes to whichever you choose, and switching formats starts a new game.

Does the game survive a page refresh?

No. The called set is held in the page, so a refresh starts a new game. Do not refresh mid-session.

Why does the board show every number rather than only the called ones?

Because the useful question during a game is which numbers have not come up, and a list of called numbers answers that far more slowly than a full board.

Can two people run the same game on different devices?

No. Each device has its own independent pool, so two devices would call different numbers. Run one caller and show it.

How fast should I call?

Slower than feels natural. The board makes it safe to go quickly, but a room marking cards by hand needs a few seconds per number regardless of how ready the tool is.

← Back to all tools