How can you convert the array ['a', 'b', 'c'] into the string "a,b,c"?
const arr = ['a', 'b', 'c'];
String(arr)
arr.join('')
arr.concatenate()
arr.toString()