const removeFromArray = function([x], [y]) {
let array = [x, y];
array.indexOf(0);
array.indexOf(1);
array.splice()
};
// Do not edit below this line
module.exports = removeFromArray;