Array pop ruby

a = [1, 2, 3, 4]
a.pop()
# => 4
I got 99 problems but a bug aint one!