// If you do not want to use array.reduece you can itereate through the array and then get the solution. const getSum = (arr)=>{ let sum = 0; for(key of arr){ sum += key } return sum }