Somebody, anybody, please help. I have been arguing with this lesson for days. (It seemed to take forever to figure out the main issue) Now I am stuck on the last condition. I have tried everything I could think of (didn't work), tried GOOGLE (apparently I'm too dense to understand that) and I have tried mimicking what I have seen in the other HELP answers (that's where my code sits now - see below). The last condition is failing with this error: Error in com/codegym/task/task08/task0814/Solution.java on line 47 cannot find symbol symbol: class Iterator location: class com.codegym.task.task08.task0814.Solution Current code: public static HashSet<Integer> removeAllNumbersGreaterThan10(HashSet<Integer> set) { // write your code here Iterator <Integer> itr = set.iterator(); while(itr.hasNext()) { if(itr.next() > 10) { itr.remove(); } } return set; }