Pre-K Math Levels

Welcome to Pre-K Math Bubbles!

Perfect for preschoolers! These five carefully designed levels introduce your child to basic counting, number recognition, and simple patterns.

What your child will learn: Number sequences 1-10, backwards counting, and basic number patterns.

Level 1

Counting. Pop the bubbles in order from 1 to 5.

Number Bubble - Counting from 1 to 5 is a delightful math game for young learners. Pop the bubbles in sequence and boost early number skills! Ready, set, pop!

Level 2

Backward counting. Pop the bubbles in order from 5 to 1.

Number Bubble - Practice counting backwards with a fun popping challenge. Perfect for developing number sense and sequence awareness!

Level 3

Pop the bubbles in order from 1 to 10.

Number Bubble - Learn to count to 10 while popping colorful bubbles! Great for building confidence in early numeracy.

Level 4

Pop all the bubbles except number 4.

Number Bubble - Sharpen attention and number recognition by spotting which bubble doesn’t belong. Fun for curious minds!

Level 5

Quickly pop the bubbles in order from 1 to 10. Finish in 30 seconds or start again!

Number Bubble - Race against the clock to count from 1 to 10! A fast-paced way to practice numbers and hand-eye coordination.

// Preserve inClassroom parameter in all links function addClassroomParamToLinks() { const urlParams = new URLSearchParams(window.location.search); const inClassroom = urlParams.get('inClassroom'); if (inClassroom === 'true') { // Add inClassroom=true to all internal links const links = document.querySelectorAll('a[href]:not([href^="http"])'); links.forEach(link => { const href = link.getAttribute('href'); if (href && !href.includes('inClassroom')) { const separator = href.includes('?') ? '&' : '?'; link.setAttribute('href', `${href}${separator}inClassroom=true`); } }); } } // Initialize updateProgress(); addClassroomParamToLinks();