function generateRandomNumber( argRange ) {
  return 1 + Math.round( Math.random() * ( argRange - 1 ) );
}
