Answer:
import random
def buildArray(a, b):
for i in range(b):
random_num = random.randint(10, 99)
a.append(random_num)
return a
def sumArray(arr):
total = 0
for e in arr:
total += e
return total
values = int(input("How many values to add to the array: "))
array = []
print(buildArray(array, values))
print("Total: " + str(sumArray(array)))
Step-by-step explanation:
*Added parts are highlighted.
Create a method called sumArray that takes one parameter, arr
Initialize total as 0
Create a for loop iterates through arr
Add each value in the arr to the total
When the loop is done, return the total
After you build your array, call your method, sumArray, pass the created array as parameter and print the total