the array to check for missing items
the array to check for newly added items
An object containing items missing (existing in oldArray but not newArray) and items added (existing in newArray but not in oldArray). Object is of the form { missing: [], added: [] }
Compares two arrays to return the difference between two arrays' items.