Lesson 15: switch
When checking one value against many options, an if/else if chain gets long. switch is cleaner: switch (value) checks the value, each case is an option, break ends it, and default runs if no case matched. Note: in C# each case that does something must have a break.