plus
Returns a list containing all elements of the original collection and then the given element.
operator fun <T> Iterable<T>.plus(element: T): List<T>(source)
fun main() {
val numbers = listOf(1, 2, 3)
val extended = numbers + 4
println(extended) // Output: [1, 2, 3, 4]
}