LoadingBar C#

Galera eu preciso criar uma tela de Loading com carregamento, eu consegui faze um loadingbar mas eu queria fazer com que o carregamento dela fosse sempre aleatorio com Randoom, aguem poderia me ajudar ?

codig:

  1.         Console.CursorVisible = false;  
    
  2.         Console.SetCursorPosition(13, 15);
    
  3.         Random randomBar = new Random();
    
  4.         randomBar.Next(1, 51);
    
  5.         for (int i = 0; i <= 50; i++)
    
  6.         {
    
  7.             for (int y = 0; y < i; y++)
    
  8.             {
    
  9.                 Console.ForegroundColor = ConsoleColor.Green;
    
  10.                 Console.Write("█");
    
  11.             }
    
  12.             Console.ForegroundColor = ConsoleColor.DarkGray;
    
  13.             Console.Write(i + "/50");
    
  14.             Console.SetCursorPosition(13, 15);
    
  15.             System.Threading.Thread.Sleep(200);

UP