Remember how strings are very similar to an array of characters? How do you think we should access a particular character in a string?

Let's find the third character of the following string.

Sweet. Just like with arrays, we can access a character as if it's an element. Strings are also zero-indexed, so we can access the third letter using [2].

Whoops. Is how we would access the third element in an array?