import java.util.Random;
public class RandomNumberGenerator
{
public Random myGen = new Random();

public RandomNumberGenerator()
   {
	int num[] = {0,0,0,0,0,0,0,0,0,0 };
   
	for (int i=0; i<10; i=i+1)
	   {
	   num[i] = myGen.nextInt( 256 );
      System.out.println("num[" + i + "]: " +  num[i] );
      }
				
   } // end constructor
public static void main(String args [])
   {
   RandomNumberGenerator app = new RandomNumberGenerator();
   } // end main
} // end class
