I am tring to assign random numbers to each 4 label .on my form.but I got stuck.. would you pls fix it ?


PHP Code:

private void timer1_Tick(object senderEventArgs e)
        {
            
Random RandomClass = new Random();
            
             for (
int a 1<= 4a++)
             {
               
int rn(a) = RandomClass.Next(120);  
                 
lb(a).Left lb(a).Left rn;
             }
        } 


Thanks