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