We can also append characters to a string.
Can you print "Mouse!" by appending a character?
Perfect! Since a string is made up of characters, we can use the += operator to append characters to it.
Not quite! We need to create the shoutMouse variable and append the '!' character to print "Mouse!".