const fruits = ['apple','banana']; push로 'orange' 추가
const fruits = ['apple', 'banana']; fruits.push('orange'); console.log(fruits);