let string1 = "Hello" let string2 = "World" let finalString = string1 + ", " + string2 + "!" // Hello, World!