If we want to remove characters from a string, we can use the .erase() method.

Cool. We call .erase() on the string we want to remove characters from and then pass in the index to start erasing from.

We can also pass in two separate arguments, the first where to erase from and the second how many index places to erase.