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