50 pts
Look at the following assignment statements: word1 = "rain" word2 = "bow" What is the correct way to concatenate the strings? newWord = word1 == word2 newWord = word1 + word2 newWord = word1 * word2 newWord = word1 - word2