Why here i'm getting not concatenated string
String zero = "0";
for (int i = 0; i <= 5; i++)
System.out.println(zero);
zero += "0";
and here i'm able to concatenate?
String test = "Hello";
System.out.println(test);
test += "world!";
System.out.println(test);