Write a function sumAll that accepts any number of arguments and returns their sum. Use a loop over the arguments object (not rest params). Zero arguments must return 0.
sumAll
arguments
Click Run to test your code