write a function to remove a specific element from an array example: console.log(remove array element([2, 5, 9, 6], 5)); [2, 9, 6] tip: a. use the array filter function (the recommended approach) b. use if statement