The comparison operators we've learned about so far don't just work with numbers, they also work with strings.

Which operator will make the comparison below evaluate to true?

Nice! Ruby takes the first letter from every string and compares them. The lowercase alphabet is stored from smallest to largest, so "h" is less than "t".

Whoops! Not quite in the order you'd think, huh?