// Only change code below this line
var ourStr = "I come first. ";
ourStr += "I come Second.";
var myStr = "This is the first sentence. ";
myStr += " This is the second sentence.";
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36.
Challenge: Concatenating Strings with the Plus Equals Operator