You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Returning function,
`const numbers = [1, 2, 3, 4] // should be [1,2,3,4,5]
const sumArray = arr => {
let sum = 0
arr.forEach(function(element) {
sum += element
})
return sum