// example: let yourArray = [1, 2, 3]; yourArray.push(4); // yourArray = [1, 2, 3, 4] // syntax: // <array-name>.push(<value-to-add>);