# -*- coding: iso-8859-1 -*-

#Averages a list of numbers
#Parameters: 'list' is a list of numbers
#Return value: None
def average(list):
  #TODO: fill in your function here
  
#Returns a list of n dice rolls on a fair, 6-sided die
#Parameters: 'n' is the number of times you want to roll the die
#Return value: A list of die roll results
def diceRoller(n):
  #TODO: fill in your function here

#Run your code!
def main():
  #TODO: put what you want in your main method here
  
main()