For this question Replace the "l" in the following string with "m": `word = "lace"` we could do `word.gsub("l", "m")` instead ``` word[0] = "m" puts word ```