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