The result of this function is too small. I'm not sure where the problem is or how to fix it. Please address both
def get_n_numbers(n):
''' Return the sum of n random numbers from 1 through 4'''
import random
total = 0
for i in range(n):
mynumber = random.randint(1,4)
total = total + mynumber
return total