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