An example of Array.push let arr = ['abc', 'def']; console.log(arr); // -> [ 'abc', 'def' ] arr.push('ghi'); console.log(arr); // -> [ 'abc', 'def', 'ghi' ]