Can you think of two ways to convertmyList into a single string?

String.join(", ", myList)myList.toString()Arrays.toString()new String(myList)

Swee-heet! We can use join() or myList's toString() method.

Oh noes! We can use join() or myList's toString() method.