const cars = ['farrari', 'Ice Cream'/* It is not an car */, 'tata', 'BMW'] //to remove a specific element cars.splice(colors.indexOf('Ice Cream'), 1); //to remove the last element cars.pop();