export function sum(values) { // implementar logica aqui let soma = 0; for (i in values) { soma += values[i]; } return soma; }