function random_number(first, last) { return Math.floor((Math.random() * (last - first + 1))) + first; }