function randNum(menor, maior) { return Math.round(Math.random() * (maior - menor)) + menor; }