Can you find two ways to make this sentence readable and in capitals?

string = string.uppercase.reversestring = string.reverse.uppercasestring = string.reverse.capitalsstring = string.capitals.backwards

Bingo! We can chain methods like reverse and uppercase. In this case, they don't have to be in a specific order.

Oh noes! We can chain methods like reverse and uppercase. In this case, they don't have to be in a specific order.