Code Studio · Level 8
Class Builder
One blueprint, a whole team. Add a method to your class, then stamp out two different characters and watch both cards appear.
Build two characters.
Example code
class Character {
constructor(name, tool, level) {
this.name = name;
this.tool = tool;
this.level = level;
}
showCard() {
say(this.name + " carries a " + this.tool);
say("Level " + this.level);
}
}
let nova = new Character("Nova", "debug wand", 3);
let milo = new Character("Milo", "loop boots", 4);
nova.showCard();
milo.showCard();
🧩 Tap to add code blocks — build the blueprint, then stamp the team
Name characters Nova, Milo, Bolt, Kai, Wizard, Knight, Dragon, Unicorn, Cat, Dog for avatars.
wand/debug
star
shield
wand/debug
star
shield
Your Team
Run your code to stamp the team from one class…
Waiting for your class…
🏭 Team assembled! Class builder complete.
One class Character blueprint stamped out two different objects — Nova and Milo — each keeping its own this.name, this.tool, and this.level.