// You use this method to retrieve the character at a specified position in a string. Using this method, // we can retrieve the first letter in a word: const word = "freecodecamp" const firstLetter = word.charAt(0) // f