export function sumEven(value) { // implementar logica aqui const numerosPares = value.filter(valor => (valor % 2) == 0) return numerosPares.reduce((somatorio, par) => { return somatorio + par }, 0) }