I wrote a function A, and inside this function there is below code piece.
rnd.Next(1,3);
If I run my A function hundred times, and print out the results, results are not realistic for example it is always win or always lose. So the random function is problematic. I need a realistic real random function.
How to achieve that ?