What does this print for a list that contains a null element?val items = listOf("a", null, "c") println(items.filterNotNull().size)