var first = ["John", "Paul"] let second = ["George", "Ringo"]
first.append(contentsOf: second) first += second let third = first + second