Multiple Identical Options in Switch Statements need help

Tell us what’s happening:
the “case 1:” is saying that it is incorect

Your code so far


function sequentialSizes(val) {
  var answer = "";
  switch(val)
    case 1:
    case 2:
    case 3:
      result="low";
      break;
  return answer;  
}
sequentialSizes(1);

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:65.0) Gecko/20100101 Firefox/65.0.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/multiple-identical-options-in-switch-statements/

Hello, there are couples of problems here:

  1. In your switch statement, you forget the brackets { //... }
  2. You have yet to declare the variable result, but in this challenge they want you to assign the values to the variable anwser, which was already declared for you.
  3. It should be Low, not low.