Here is my solution of **test your array skills ** array 4
const birds = [ “Parrots”, “Falcons”, “Eagles”, “Emus”, “Caracaras”, “Egrets” ];
const index = birds.indexOf(‘Eagles’)
if (index !== -1){
birds.splice(index , 1)
}
function eStarter(birds) {
return birds.startsWith('E')
}
const eBirds = birds.filter(eStarter);
what do you thing?