export function sum(values) {
let soma = 0;
for (let index = 0; index < values.length; index++) {
soma = soma + values[index];
}
return soma;