Strings aren't quite as easy to compare as primitive types because they're objects.

That's why we need to use a string's equals() method to check if it's equal to another string.

See that? We'll get back to objects and Strings a little later; in the meantime, let's not use == to compare strings!

Yikes! Because equals() is a method, we need to use it together with a string as well.