I don't think there is one method that will do this, but you could write an assistant that essentially did the following:
array1.reject((function(item) { return array2.contains(item); }), array2);
Just iterate over array1 and reject everything that returns true for array2.contains ().
source share