The result of filtering

Report a typo

What is the result of the following code?

val numbers = listOf(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
println(numbers.filter { x -> (x % 2 == 0) && (x % 3 == 0) })
Select one option from the list
___

Create a free account to access the full topic