Checkpoint 2.6.1. Strings and char.
Hint 1.
There is no string type; instead, strings are implemented as arrays of chars. You can’t simply interchange strings and chars in a line of code, as they are fundamentally different under the hood.
Hint 2.
Character literals use single quotes, like: ’A’. String literals use double quotes, like: "A".