Create an array (the list must have the name numList) of the first 5 prime numbers starting at 2. Print out the items at index 0, 2, and 4.

numList = [2, 3, 5, 7, 11]

print(numList[0])
print(numList[2])
print(numList[4])