Using the 'take' Function for Selecting a Fixed Number of Elements

The 'take' function in Kotlin allows you to select a specified number of elements from the beginning of a collection. This can be particularly useful when you want to limit the size of a list or retrieve a subset of data without modifying the original collection. For example, when you want to display only the first few items from a long list in your UI.

val numbers = listOf(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
val firstThree = numbers.take(3)

println(firstThree) // Output: [1, 2, 3]