Write a function (def sumOfElements(lst)) that takes a list of numbers and returns the sum of all elements in the list.
xxxxxxxxxx
def sumOfElements(lst):
return sum(lst)
print(sumOfElements([1, 2, 3, 4, 5]))