Tell us what’s happening:
Describe your issue in detail here.
**Your code so far**
function switchOfStuff(val) {
let answer = "";
// Only change code below this line
case "a":
answer = "apple";
break;
case "b":
answer = "bird";
break;
case "c";
answer = "cat";
break;
// Only change code above this line
return answer;
}
switchOfStuff(1);
**Your browser information:**
User Agent is: Mozilla/5.0 (Linux; Android 9; Infinix X650B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.88 Mobile Safari/537.36
Challenge: Adding a Default Option in Switch Statements
You used a semicolon in a spot that should be a colon. Use your detective skills, read the console, figure it out. Debugging is one of the most important skills for a developer.