Just one more: the logical or operator || tells us if at least one of our expressions is true. It doesn't care about the rest.

Let's try and print false here.

Awesome. If only one expression is true, the return value is true. Can you guess what happens if all expressions are false?

Are you sure the || operator would evaluate to false with these values?