How can we fetch and display "ruby" from the gems array? Might there be two ways?

print gems[2]print gems[1]print gems[-2]print gems[-1]

Right! Since arrays start at 0, "ruby" is has an index of 1 or a negative index of -2, as the array's length is 3.

No, sorry! Since arrays start at 0, "ruby" is has an index of 1 or a negative index of -2, as the array's length is 3.