// You use this method to cut out a substring from an entire string.
// We will use this method to cut out the remaining part of a word (excluding the first letter):
const word = "freecodecamp"
const remainingLetters = word.substring(1)
// reecodecamp