What is the output of the following code snippet?
my_list = ['Hello', 'World', 'Educative']
temp = [a[1].upper() for a in my_list]
print (temp)
