There's an important data type that we didn't talk about so far, which has something to do with comparisons.

Whoa! The == sign determines equality between values. If the values are equal, the comparison returns true; otherwise, it returns false.

Psst: be careful not to confuse the == operator with =, the assignment operator.

We want to use the equality operator here.