String concatenation vs string interpolation
The + operator, when one or more of the parts is a string acts like a string concatenating operator. Unites 2 strings in one. Take care of the space you must literally give. This works well if you have string literals.
In case of string interpolation you don't have to. You can put all assignments and variables inside a string.