let string1 = "hello" let string2 = " there" var welcome = string1 + string2 // hello there
var greet = "Hello " var name = "Jack" // using the append() method greet.append(name) print(greet)