//toUpperCase is a string method that returns the uppercased version of a specified string. // We will use this to capitalize the first letter: const firstLetter = "f" const firstLetterCap = firstLetter.toUpperCase() // F