const array = [1, 2, 3, 4, 5, 6, 7, 8]
array라는 배열에
console.log(array.join(' '))
위 처럼 출력하면
"1 2 3 4 5 6 7 8"
로 출력된다.