export function sumEven(value) { // implementar logica aqui const arr = []; for (let index = 0; index < value.length; index++) { const element = value[index]; if (element % 2 == 0) { arr.push(element); } } function add(a, b) { return a + b; } var soma = arr.reduce(add, 0); return soma; }