# print a heading
print('\n\nCartoon Favourites\n\n')
# sets up array of strings
toons = ['Baymax', 'Buzz', 'Lightning McQueen', 'Sulley', 'Nemo', 'Crush', 'Forky', 'Bo-Peep', 'Rex', 'Boo']
# repeats for the size of the array and prints each out element
for i in range(1, len(toons), 1) :
print(str(i + 1) + ' : ' + toons[1])
print('\n\n') # display blank line (2)