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