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