A switch statement has a list of cases, each beginning with either the case
keyword or the default keyword. It is a syntax error to omit an expression
after the case keyword:
To fix this error, write an expression (usually a constant) after the case
keyword:
Alternatively, replace the case keyword with default if the code should
execute if no other case would: