Basic JavaScript - Selecting from Many Options with Switch Statements

Hello,
Can you please tell what s wrong with my code ?

function caseInSwitch(val) {
let answer = "";
// Only change code below this line
switch (val){
case 1:
console.log("alpha");
break;
case 2:
console.log("beta");
break;
case 3:
console.log("gamma");
break;
case 4:
console.log("delta");
}


// Only change code above this line
return answer;
}

caseInSwitch(1);

I’ve edited your code for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

Hello there,

We recommend familiarising yourself with how to ask a question on this forum. Specifically, you are more likely to get useful help, if you provide a helpful title and description:

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.