Question: Complete the script so that it prints out a list slice containing the last three items of the list letters .

letters = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j"]

Expected output:

['h', 'i', 'j'] 

Hint: Since we're dealing with the last items, it is wise to use negative indexing.