let me open with this: i suck at arrays/programming. here's my assignment: Read two sets of numbers from the keyboard. Print the intersection of the two sets, in any order, without duplicates. Print the union of the two sets, in any order, without duplicates. okay, great. so i have this: import java.util.*; public class Sets { public static void main(String[] args) ...