Consider the following array:
stuff = ["dog", "cat", "frog", "zebra", "bat", "pig", "mongoose"]
for i in range(len(stuff)):
print (______)
To print the words in the arrays in all UPPERCASE you would replace the ____________ with:
1) stuff[i].upper()
2) upper(stuff)
3) (i)
4) [i]