Now that we know about booleans, how about we put them to action?

The if keyword allows us to execute a piece of code based on a condition, a boolean value.

See that? The code block in the braces is executed if the condition we've specified in the parentheses is true.

Not quite. We need to use an if statement to check the boolean condition.