Task2
using this array
var array = ["Banana", "Apples", "Oranges", "Blueberries"];
- Remove the Banana from the array.
- Sort the array in order.
- Put "Kiwi" at the end of the array
- Remove "Apples" from the array.
- Sort the array in reverse order. (Not alphabetical, but reverse// the current Array i.e. ['a', 'c',
'b'] becomes ['b', 'c', 'a'])