The assignment is:

This project called ArrayOfHope will consist of just one class, Tester, that in turn, has just one
method, main. The main method will use two for-loops:
• The first loop will produce an integer count from 65 to 90 (notice these are the ASCII
codes for characters A…Z) and initialize the elements of the character array ch[ ] with
the characters corresponding to the ASCII codes being generated by the loop. This will
fill the ch[ ] array as follows: ch[0] = ‘A’, ch[1] = ‘B’, …, ch[25] = ‘Z’.
• The second loop will print the 26 elements of the ch[ ] array with one comma followed
by one space between adjacent characters as follows:
A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z

and so far I've got:



public class Tester
{
public static void main (String args[])
{
char ch [] = {65, 66, 67, 68, 69, 70, 71, 72,73,74 ,75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90};

for (int i = 0; i < ch.length; i++)
{
System.out.println(ch[i]);
}

for (int j = 0; j< ch.length; j++)
{

}

}
}


I think I'm going about it in the wrong way, and I'm stuck. Can someone help me please?[