Hi, I'm wondering how I can accomplish this.
Suppose I have the following array
String[] randomText = {"hi", "hello", "hey there"} ;
If I want to print the array I only know how to do so line by line.
for (int num = 0; num < randomText.length; num++){
System.out.println(randomText[num]);
} Can someone point me in the right direction?