0부터 배열의 길이까지. 0..<arr.count
var arr: [Int] = [11,22,33,44,55] for i in arr.indices{ print("\(i) 번째 값 \(arr.indices)") }