const removeFromArray = function(array) { const removalChecks = []; for (i=0; i=0; --i) { if (array[i] == valToCheck) { array.splice(i, 1) } } } return array }; // Do not edit below this line module.exports = removeFromArray;