Play the arcade, then flip to the code lab and build your very own game — one line at a time. No installs, no accounts. Works on your phone.
Drag anywhere on the beach — or use ← → keys — to move Malando. Catch fish before they hit the sand. Miss 3 and it's over. ✨ Golden fish give big points and a heart back!
This is a real code editor. Change a number, press Run, and watch what happens. You can't break anything — if the code has a mistake, we'll tell you in plain English. Start at Lesson 1 and work across.
setBackground("navy") — paint the whole screen a colordrawBox(x, y, size, "hotpink") — draw a square. x = across, y = downdrawCircle(x, y, radius, "cyan") — draw a circledrawText("Hi!", x, y, size, "white") — write wordsonFrame(function(){ ... }) — run code ~60 times a second (the "game loop")keys.left keys.right keys.up keys.down — true while an arrow key is heldrandom(1, 10) — pick a random numberaddScore(1) — add to the score shown above the previewtouching(x1,y1,s1, x2,y2,s2) — true if two boxes overlap (great for "did I catch it?")navy, hotpink, cyan, yellow, lime, white, orange, red, purple — or any hex like "#ff3d9a"