연관된 값들을 하나의 그룹으로 묶어서 나열한 자료구조
ex)
const colors = ["red", "green", "blue"];
const colors = ["red", "green", "blue"]; console.log(colors[0]); //Red 출력 console.log(colors[1]); //green출력