Adding a Default Option in Switch Statements error

Tell us what’s happening:
I don’t know what the error is anymore it’s not running and I guess I have done the necessary

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';
  
  
  // Only change code above this line  
  return answer;  
}

// Change this value to test
switchOfStuff(4);}

Your browser information:

User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/adding-a-default-option-in-switch-statements

Your switch is missing a closing }.