Can someone plz help me with this activity

Tell us what’s happening:

Your code so far


function caseInSwitch(val) {
  var answer = "";
  // Only change code below this line
  caseInSwitch (new val().getval()){
case 0;

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

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

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/selecting-from-many-options-with-switch-statements

You should copy the switch statement that is in the instructions. That’s not how you write a switch statement.

I don’t know how to make a switch statement

Instructions show the following:

switch(num) {
  case value1:
    statement1;
    break;
  case value2:
    statement2;
    break;
...
  case valueN:
    statementN;
    break;
}

It is pseudocode, so you will end up editing the code, but the code is the basic framework of a switch/case statement.

What do I replace the (num) in switch function with?

Thanks, it worked out.