Concept Flow - String concatenation and <<
Start with string s = "Hello"
Use << to add " World"
s now "Hello World"
Use + to add "!"
s + "!" returns new string "Hello World!" but s unchanged
Print s and s + "!"
END
Start with a string, add more text using << which changes the original string, and + which creates a new string without changing the original.