add an item to the end of an array and return a new array code example
Example: javascript array push
var fruits = [ "Orange", "Apple", "Mango"];
fruits.push("Banana");
var fruits = [ "Orange", "Apple", "Mango"];
fruits.push("Banana");