1. What is displayed in the list box (lstOut) after this code fragment is executed?

Dim a_intQty() As Integer = {9, 6, 4, 3, 5}

For intCnt = 1 To 4 Step 2
lstOut.Items.Add(a_intQty(intcnt))
Next