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

Hint:Keep in mind that list slicing is upper-bound exclusive.