Modify the string "cat" to "bat"
"cat".replace("c", "b") OR "b" + "cat"[1:]
"cat".replace("c", "b")
"b" + "cat"[1:]