b2KIT

Bingo Number Caller

Random bingo number caller with visual board tracking, call history, and auto-call mode with adjustable speed.

Tested tool guide Tested browser tools Checked August 16, 2026

What Bingo Number Caller does, with a checked example

This tool runs a standard 75-ball bingo draw in the browser. Each call announces a letter-number pair such as B-9 or O-63, marks the number on a 5-by-15 board, and appends it to a call history in order. Auto-call mode makes the next draw automatically on a timer you can speed up or slow down, so one person can run a whole session. The thing most people get wrong: numbers are drawn without replacement, so no number can be called twice in a game, and the draw never evens itself out no matter how long the game runs.

Worked example

A concrete input and expected output from the current implementation.

Input

A new game whose first three calls were B-9, I-24, and N-33.

Expected output

The board marks B-9, I-24, and N-33; the history lists them in that order; 72 numbers remain in the draw pool (14 in each of B, I, and N, and 15 in G and O).

75 minus 3 is 72, and because each column holds exactly 15 numbers, removing one call from each of three columns leaves 14 in those columns. The next call is chosen at random from the 72 remaining numbers, so it cannot be predicted in advance.

How the result is produced

1

No-replacement draw pool

A game starts with all 75 numbers: B 1-15, I 16-30, N 31-45, G 46-60, O 61-75. Every call removes one number from the pool at random, so a repeat within a game is impossible and each number appears at most once. After 75 calls the pool is empty and the game is over; starting a new game rebuilds the full pool from scratch.

2

Board, history, and timing

Each call is marked on the board grid and added to the history in order, giving players a way to verify what was announced. Auto-call mode fires the next draw on an adjustable interval, which is how one person runs a whole session hands-free; manual mode waits for a button press instead. The game ends when all 75 numbers have been drawn.

Good uses

  • Running a bingo night at home, a club, or a small venue: project the board, switch on auto-call, and let the tool announce numbers without a dedicated caller.
  • Practicing daubing speed or testing bingo cards and software by generating full-game draw sequences and comparing them against the calls.
  • A classroom or activity group where the caller wants an unambiguous visual record of every number called so disputes about what was announced can be settled from the history.

Limits and checks

  • It assumes 75-ball bingo. The letter ranges (15 numbers per column) describe the American game; UK-style 90-ball bingo uses different ranges, so the letters and numbers here will not line up with those cards.
  • Randomness has no memory: several calls can land in one column in a row, and no run of numbers makes a later draw more likely. A cluster is normal, not a fault, and no number is 'due'.
  • Game state is session-only and the tool does not know who won. Reloading may reset the board and history, so verify after a refresh rather than assuming calls carried over, and checking cards for bingo stays with the players.

Common questions

Can the same number come up twice in one game?

No. Each number is drawn without replacement, so once a number is called it leaves the pool and cannot reappear until a new game starts. If you believe a number repeated, you are probably looking at history from two different games: starting a new game rebuilds both the pool and the history.

How long does a full game take in auto-call mode?

Only if nobody calls bingo first; a game usually ends when someone completes a card, well before all 75 numbers. If a game does run to completion at one call every 3 seconds, it takes 75 x 3 = 225 seconds, about 3 minutes 45 seconds. Slower speeds scale proportionally.

References and verification

The example and behavioral notes were checked against the browser implementation. Standards and primary references below define the relevant format, formula, or platform behavior.

Related Tools