// push() Method // What // - It add new element at the end of array. const myArray = [1, 2, 3, 4, 5]; myArray.push(6); console.log(myArray);