Stumped On "Adding a default option in Switch statements

Tell us what’s happening:

Thanks in advance for any help! 

**Your code so far**

function switchOfStuff(val) {
var answer = “”;
// Only change code below this line
switch (val) {
case ‘a’:
answer = “apple”;
break;
case ‘b’:
answer = “bird”;
break;
case ‘c’:
answer = “cat”;
break;
default:
answer = “stuff”;
break;
}

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

// Change this value to test
switchOfStuff(1);

**Your browser information:**

Your Browser User Agent is: ```Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:55.0) Gecko/20100101 Firefox/55.0```.

**Link to the challenge:**
https://www.freecodecamp.org/challenges/adding-a-default-option-in-switch-statements

I do not think you need to put a break statement in your default block.

```After taking the break out of the default block, it only returns that I got one item correct. That is that I didn’t use any if/else statements. I fixed it and was able to move to the next challenge with the shift key to change all curved double and single quotes to be straight marks. ``