fruits = {"banana","apple"}
fruits2 = {"banana","apple","orange","tomato"}
How do I then make function that takes both tables, compares them with each other, detects the differences, and returns a table containing the table entries that are or are not present in the second table, in this case "tomato" and "orange".
Am I missing something extremely obvious?