how to use the random function in C plus plus to choose between the range code example
Example: c++ how to generate a random number in a range
min + ( std::rand() % ( max - min + 1 ) )
min + ( std::rand() % ( max - min + 1 ) )