so say i had a table
table1 = {“oranges”, “apples”, “bananas”, “dogs”, “cats”, “rabbits”}
And i wanted to make a table of stuff to remove from that table
table2 = {“dogs”, “cats”, “rabbits”}
how would I make it so that all the stuff from table2 is taken from table1 so i end up with
finaltable = {“oranges”, “apples”, “bananas”}
thanks
jason