enleur
listOf(1, 2, 3, 4, 5) .map { n -> n * (n + 1) / 2 } .mapIndexed { (i, n) -> "Triangular number $i: $n" }
map