If you're seeing this message, it means we're having trouble loading external resources on our website.

如果你被网页过滤器挡住,请确保域名*.kastatic.org*.kasandbox.org 没有被阻止.

主要内容

存储和更新列

问题

这段代码存储了一款电子游戏的高分:
highScores ← [750, 737, 714, 672, 655, 634, 629, 618, 615, 610] 

DISPLAY(highScores[5])
INSERT(highScores, 5, 668)
INSERT(highScores, 2, 747)
REMOVE(highScores, 12)
REMOVE(highScores, 11)
DISPLAY(highScores[5])
这个程序输出显示的是什么?
选出正确答案:
🤔