Question: Completethe script so that it prints out the second item of the list.

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

Expected output:

b

Hint:List indexing starts from 0.