adding to bottom of array code example
Example 1: js array add element
array.push(element)
Example 2: javscript append item from array
let foo = ['oop','plop','copo'];
foo.push("plop");
array.push(element)
let foo = ['oop','plop','copo'];
foo.push("plop");