listAverage() returns the average number in a list. Which of these functions does this correctly?
1) sum(list) / len(list)
2) max(list) / min(list)
3) list[0] + list[1] + ... + list[n] / n
4) list[0] * list[1] * ... * list[n] / n