[swift] 02. 배열
shoppingList[4..6] = ["Bananas", "Apples"]
// 4, 5, 6번째 인덱스 아이템을 Banana, Apples로 변환
// 즉, 아이템 3개가 2개로 줄었다
// index, value 필요할 때
for (index, value) in shoppingList.enumerated() {
  print("Item \(index + 1): \(value)")
}