Question: Complete the script so that it prints out the letter i  using negative indexing.

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

Expected output

i 

Hint: It would be silly to count from start to end since i is located closer to the end than to the start of the list.