export function sumEven(value) { let total = 0; for(let i = 0; i < value.length; i++){ if(value[i] % 2 === 0){ total += value[i]; } } return total; }