데이터로 이뤄진 리스트
하나의 변수 안에 데이터의 리스트를 가지는 것
const daysOfWeek = ["mon", "tue", "wed", "thu", "fri", "sat"];
//Get Item from Array console.log(daysOfWeek[4]);
// Add one more dat to the array daysOfWeek.push("sun");