Connect the Numbers is a browser-based dot-to-dot puzzle with eight labeled points, where connecting them in numeric order from 1 through 8 yields a fixed maximum score of exactly 1,000 points. The board opens with point 1 anchored in place and the remaining seven points waiting on the canvas. Each accepted segment is drawn directly to a real Canvas path while the interface tracks your current score, mistake count, layout identifier, and a connection ledger so every move is auditable. The whole puzzle runs client-side, with no account, upload, or external dataset, and you can solve the reproducible opening layout for a guaranteed golden route on Connect the Numbers.
Unlike a free-form drawing toy, this dot-to-dot game enforces strict numeric order and a precise crossing check. You cannot jump ahead, you cannot skip a number, and you cannot draw a segment that crosses a nonadjacent part of the path. The result is a small puzzle with clear rules, complete keyboard support, and a verifiable outcome that makes it ideal for short breaks or focused practice sessions.

What the Board Looks Like
The puzzle board contains exactly eight numbered points on a single Canvas surface. Point 1 is anchored automatically at the start of every run, so the first connection you can ever make is from 1 to 2. The other seven points sit in fixed local coordinates that stay inside the visible canvas area, and the layout identifier in the interface tells you which seeded arrangement is currently active. Above the board, an accessible toolbar lists the eight numbered point buttons in order, the next required number, your current score, your mistake count, and a connection ledger that records every accepted segment. Because the toolbar and canvas are aligned, you can play by mouse, touch, or keyboard without losing visual contact with the path being drawn.
How the 1,000-Point Score Breaks Down
The maximum score is not a single reward at the end of the run. It is the explicit sum of seven segment awards, which means you can track your progress point by point as you connect each successive pair. The first six accepted connections each award 125 points, and the seventh and final connection carries a 250-point completion bonus that moves the score from 750 to exactly 1,000.
| Connection | Segment | Points awarded | Running total |
|---|---|---|---|
| 1st | 1 → 2 | 125 | 125 |
| 2nd | 2 → 3 | 125 | 250 |
| 3rd | 3 → 4 | 125 | 375 |
| 4th | 4 → 5 | 125 | 500 |
| 5th | 5 → 6 | 125 | 625 |
| 6th | 6 → 7 | 125 | 750 |
| 7th | 7 → 8 | 250 | 1,000 |
This published seven-step breakdown is the only way to reach the maximum. Any crossing, out-of-order pick, or nonadjacent endpoint touch interrupts the run, and no partial credit is awarded for the segments you have already drawn. The score describes completion of the authored board only, so it is best read as a reproducible puzzle result rather than a standardized spatial, motor, or cognitive metric.
How to Play Connect the Numbers in Your Browser
The interface is built so that a first-time player can finish a clean run in under a minute. Follow these steps on the Connect the Numbers page:
- Wait for point 1 to anchor itself on the canvas. The interface shows it as the active starting point and highlights 2 as the next required number.
- Choose point 2 by clicking its numbered button, tapping it on a touch screen, or pressing the 2 key. The first segment appears on the canvas and the score moves to 125.
- Continue in strict numeric order. Each accepted step adds 125 points and grows the path by one segment, so after connecting 1 through 7 you should be sitting on 750 points.
- Finish with point 8. This seventh connection carries the 250-point completion bonus and freezes the score at exactly 1,000.
- If you want a different arrangement before you start, use New layout to load another seeded board. The same rules and the same maximum score apply to every layout.
If at any point the puzzle rejects your move, the same connection does not consume an additional attempt. The error is recorded by signature, and only a second, distinct invalid move ends the run. Restart resets the board to the fixed opening layout, point 1 anchored, and the score and mistake counters back to zero.
Crossing Rules, Mistakes, and the Two-Strike Limit
Crossing detection is the heart of the puzzle. The geometry validator uses orientation signs plus on-segment bounds so it can tell the difference between three geometric situations that look similar to the eye: a proper crossing of two nonadjacent segments, an endpoint contact that shares a real point, and a collinear overlap where two segments lie along the same line. The immediately previous segment naturally shares its starting endpoint with the new segment, so that permitted path joint is excluded from the collision audit. Any other crossing or overlap is a rejected move.
Invalid attempts are deduplicated by signature, where the signature includes the active layout, the expected number, the chosen number, and the collision result. Repeating the identical invalid attempt cannot consume the second chance, which keeps the rules forgiving when you click the wrong button twice in a row. A second distinct invalid attempt, however, closes the run immediately. Choosing an already connected point, an unknown point, or any other invalid internal action is treated as an atomic no-op so it cannot artificially end the game.
Controls: Mouse, Touch, and Keyboard
The large numbered point controls work with a mouse click, a touch tap, or a keyboard press. Keyboard players can tab to a point and press Enter or Space to select it. The puzzle also discloses the number keys 2 through 8 as direct shortcuts for the fixed route, since the next required number is always shown in the interface. Tab order and button labels stay aligned with the canvas, so accessibility tools such as screen readers and switch inputs can drive the puzzle without depending on mouse hover or drag gestures. The shared Boss Key from the standard game shell remains available for situations where you need to clear the screen quickly.
Fixed Layout vs. New Layout
The opening board is fixed, which means its geometry and winning route can be reproduced exactly. This is the board to use when you want a guaranteed golden path and a verified 1,000-point finish. The New layout control is an explicit user action that selects another safe, authored arrangement through a deterministic seeded generator. The chosen seed is passed into a pure layout function, so the same seed always produces the same unique in-bounds coordinates and remains testable. Randomness never runs silently during React rendering, and a fresh layout changes geometry without changing rules or scoring. Because every route and candidate set is authored for this product, the game makes no claim about real-world navigation, technical drafting, developmental milestones, or aptitude.
If you enjoy connecting numbers in order, the Number Chain game uses a similar adjacency rule on a compact grid, and the Numberlink Puzzle extends the same idea to pairs of matching endpoints that cannot share cells. Both are good follow-ups once you have finished a clean 1,000-point run on the dot-to-dot canvas.