# sets up array of string
jellyBellyFlavours = ['Berry Blue', 'Bubble Gum', 'Candy Floss', 'Mixed Berry Smoothie', 'Tutti-Fruitti', 'Strawberry Cheesecake']
# display blank line
print('\n')
print(' Jelly Belly Flavours ')
print('=======================')
# display blank line
print('\n')
# repeats for the size of the array and prints each out element
for i in range(0, len(jellyBellyFlavours), 1) :
print(str(i+1) + ' : ' + jellyBellyFlavours[i])