I was trying to add an 'Other' party to list the MPs who are not part of the bigger parties or sit as independents.
filteredPartyData = filteredPartyData.reject({party_name: "Liberal"}); // works
filteredPartyData = this.collection.reject({party_name: ["Conservative","NDP"]}); //does not work
Stack exchange and Google are failing me.