List<int> listScore = [1, 2, 3, 3, 4]; main(List<String> args) { print(listScore.where((score) => score > 1).toList()); }