What if we want to execute a different code snippet in case the condition isn't met?

Bazinga! We can add an else clause to the code. Because myBoolean is false, the else block is executed instead of the if block.

Might there be a better way to do this?