const removeFromArray = function(array, ...args) { const newArray = []; return array.filter(val => !args.includes(val)); }; // Do not edit below this line module.exports = removeFromArray;