public class ArrayOfStrings {
public static void main(String[] args) {
String[] array = new String[3];
array[0] = "Hello";
array[1] = "World";
array[2] = "!";
System.out.println(array[0] + " " + array[1] + array[2]);
}
}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)