Concatenates the strings x with y to xy. x and y need to be of the type String.
x + y
Concatenated String: xy.
"Hello " + "World" -> Returns "Hello World"