var firstName = "Charles"
string by using firstName[firstName.length - 3]
Example:
```js
var firstName = "Charles";
var thirdToLastLetter = firstName[firstName.length - 3]; // thirdToLastLetter is "l"
```
lastName
string.
Hint: Try looking at the example above if you get stuck.
secondToLastLetterOfLastName
should be "c".
testString: assert(secondToLastLetterOfLastName === 'c');
- text: You should use .length
to get the second last letter.
testString: assert(code.match(/\.length/g).length > 0);
```