To make sure we don't get an index out of bounds, we can check the size of an array. The size is the number of elements in an array.

Try checking the size of luckyNumbers.

Whoop whoop! In Kotlin, the size of an array can't change.

Here's a hint: we get elements with get() and we set elements with set(). How might we get the size of an array?