riaahroo2197 riaahroo2197 25-11-2022 Computers and Technology contestada 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