
Question: Complete the script so that it prints out a list slice containing letters a, c, e, g, and i.
letters = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j"]
Expected output:
['a', 'c', 'e', 'g', 'i']

Hint:Again, this is done using slicing syntax, but you should add a second colon here and a numberafter that.