export function sumEven(value) { // implementar logica aqui var total = 0; for (let i of value) { if (i % 2 ===0) { total += i; } } return total; }