Development Class C#

using System;
using System.Threading;
public class MainClass
{
    public static void Main(){        
        Random rand = new Random();
        
        byte[] bytes = new byte[4];
        Console.WriteLine("Five random integers between 0 and 100:");
        for (int ctr = 0; ctr <= 4; ctr++)
           Console.Write("{0,8:N0}", rand.Next(101));
    }
}