Back to Function Builder
Code Studio · Level 5

Function Challenge

Write a real JavaScript function, then call it at least two times.

10-15 min Ages 9-12 Challenge JavaScript
Code Editor

Write your own function.

Example code
function celebrate(item) {
  say("The robot found " + item + "!");
}

celebrate("a star");
celebrate("a badge");
Output

Program result

Robot ready to speak your strings

Type real JavaScript, then run it.