We can use multiple elements from an array to return a certain kind of output we need for the next step in our code.
Make sure to pick return, followed by names[0] + ", " + names[1], and finally ;.
return
names[0] + ", " + names[1]
;