The AP exam uses the notation [index1, index2, index3...] to create a list with those values as the first, second, third, and so on elements.
The indices on the exam are different. They do not start at 0, but rather at 1.
Consider the following code segment.
aList ← [15, "hello", true]
Which element can be found at index 2?
- aList
- 15
- hello
- true