The strKeyword will be repeated according to the loop. How can I Save the outcome as a new string. For example if the work "hello" was repeated twice, how would I now create the "hellohello" as a completely new string.
for (int l = 0; l < newKeywordLength; l++) {
System.out.print(strKeyword);
}