I tried to make a program that separate characters . The question is
"Create a char array and use an array initializer to initialize the array with the characters in the string "Hi there". Display the contents of the array using a for-statement. Separate each character in the array with a space".
The program I made:
String ini="Hi there";
char[] array=new char[ini ];
for(int count=0;count<array.length;count++){
System.out.print(" "+array[count]);
}
what should I do to fix this problem ?

