// To convert an array to a string, you must use the toString() method. const numbers = [1,2,3,4,5] console.log(numbers) console.log(numbers.toString())