`list.pop([index])` with index doesn't work correctly. It always `pop` the last element and ignores `index` argument. ``` array = [1, 2, 3] array.pop(0) hero.debug(array[0]) # got 1 ```