Removing the last element from array

Question | May 12, 2017 | nextptr 

The array assets contains 3 elements:

var assets = ['Stock','Bond','Future'];

Select all the choices below that can remove the last element - 'Future' - from assets. Note that the array should be ['Stock','Bond'] after removing the last element, and its length (assets.length) should become 2.