There is one other parameter that we can add to our print() function: the to: parameter. This parameter will let us redirect the output of the print() function. In the following example, we redirect the output to a variable named line: var name1 = "Jon" var name2 = "Kim" var name3 = "Kailey" var name4 = "Kara" var line = "" print(name1, name2, name3, name4, separator:", ", terminator:"", to:&line) print(line)

