배열은 get, set function과 size property를 가진 Array class로 표현된다. class Array private constructor() { val size: Int operator fun get(index: Int): T operator fun set(index: Int, value: T): Unit operator fun iterator(): Iterator // ... } 배열을 만들기 위해서는 다양한 방법이 있다. arrayOf()arrayOfNulls()Array constructor[] operation Java와는 다르게 Kotlin은 Array의 값이 한번 정해지면 변하지 않는다.