I have two lists
list 1 = { "fred", "fox", "jumps", "rabbit"};
list2 ={"fred", "jumps"}
Now I need to get a list3 which contains elements of list1 which are not present in list2. so list 3 should be
list3 = {"fox", "rabbit"};
I can do this manually by using loops but I was wondering if there is something like list3 = list1 - list2 or some other better way than using loops.
Thanks