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