stackOperations = ({
enumerate: function(){
var output = '';
for(let i = this.length; i > -1; i--){
output = output ? output + ', ' + this[i] : this[i]
}
return output
},
push: function(i) {
this.push(i);
},
pop: function() {
return this.pop();
},
pick: function(){
return this[this.length - 1];
}
})