// "Replace with 'String.repeat()'" "true" class Test { String hundredSpaces() { StringBuilder sb = new StringBuilder(); for(int i=0; i<100; i++) { sb.append(" "); } return sb.toString(); } }