Why I can't pass code validation with Arrays.AsList? public class Solution { public static void main(String[] args) { Set<String> mySet = new HashSet<String>(Arrays.asList("watermelon", "banana ","cherry","pear","cantaloupe","blackberry","ginseng","strawberry", "iris", "potato")); for( String s: mySet){ System.out.println(s); } } }