```val combined = list.foldRight(Try.just(listOf&l...
# arrow
j
Copy code
val combined = list.foldRight(Try.just(listOf<Int>()), { curr: Try<List<Int>>, acc: Try<List<Int>> ->  TODO("Function Goes Here") })