# PROGRAM BetterAverageArray: Age = [44, 23, 42, 33, 18, 54, 34, 18] total = 0 for a in range(0,len(Age)): # DO total = total + Age[a] # ENDFOR; AveValue = total/len(Age) print(AveValue) # END.