<code>pop()</code> always removes the last element of an array. What if you want to remove the first?
That's where <code>.shift()</code> comes in. It works just like <code>.pop()</code>, except it removes the first element instead of the last.
</section>
## Instructions
<sectionid='instructions'>
Use the <code>.shift()</code> function to remove the first item from <code>myArray</code>, assigning the "shifted off" value to <code>removedFromMyArray</code>.
</section>
## Tests
<sectionid='tests'>
```yml
- text: '<code>myArray</code> should now equal <code>[["dog", 3]]</code>.'