I have this hash,
meses_ventas = {'Enero' => 2000, 'Febrero' => 3000, 'Marzo' => 1000, 'Abril' => 5000, 'Mayo' => 4000}
And I need to get the highest value among all the values. It turns out that I try to iterate it with each, but I can not get the highest value of the hash that means 5000 of the month of April to be stored in a variable.