Q1
Single choice
Given the following snippet:
var ac:ArrayCollection = new ArrayCollection();
ac.addItem(0);
ac.addItem(1);
ac.addItem(2);
ac.addItem(3);
ac.addItemAt(2,1);
var k:uint = ac[1]
What is the value of k?