So saying I had this Loop
for (int i = 0; i < InfomationText.length; i++) {
System.out.println("Hello World");
}
But every second time it loops 1 value I need the string to "Hello World1"
Eg
- Index 0: = Hello World
- Index 1: = Hello World1
- Index 2: = Hello World
- Index 3: = Hello World1
Thanks in advance.