alan2321
contestada

word1 = "rain"
word2 = "bow"

What is the correct way to concatenate the strings?

a
newWord = word1 == word2
b
newWord = word1 + word2
c
newWord = word1 * word2
d
newWord = word1 - word2