已知 ls=[20, 30, 50, 10, 90], 以下选项中, 不能删除元素 90 的是? ( )
ls.pop(-1)
del ls[-1]
ls.remove(ls[-1])
ls.remove(-1)