Help me plase whats rong ;;;;!

Tell us what’s happening:

Your code so far



function switchOfStuff(val) {
 var answer = "";
 // Only change code below this line
 switch (val) {
 answer = "a":
 return "apple";
 break;
 case "b":
 answer = "bird";
 break;
 case "c":
 answer = "cat";
 break;
 default:
answer = "stuf";
 break;
 }


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

switchOfStuff("a");
switchOfStuff("b");
switchOfStuff("c");
switchOfStuff(2);

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 9; SM-A105F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Mobile Safari/537.36.

Challenge: Adding a Default Option in Switch Statements

Link to the challenge:

Hi there, check your code carefully. You are missing a case inside your switch :smiley:
also you have mis-spelt ‘stuff’