elementAt
Returns an element at the given index or throws an IndexOutOfBoundsException if the index is out of bounds of this collection.
fun <T> Iterable<T>.elementAt(index: Int): T(source)
val fruits = listOf("apple", "banana", "cherry")
val secondFruit = fruits.elementAt(1) // "banana"
println(secondFruit)