// join an array together into a string // array for the .join() method let numbers = [3, 1, 6] let string = numbers.join(', ') // returns '3, 1, 6' // Also works the same just for an array of STRINGS