What if we want multiple cases in a switch statement to trigger the same code? In that case we group them together.

Which of these might trigger "You're not a freshman"?

See that? Cases without a break keyword will fall through to the next break keyword or to the end.

Wouldn't that tigger the default case, as it's not included in any of the case statements?