Idk. I just decided to do my java work on scratch. CodeHS Java - 3.8.10 - Teen Talk Here is my java code public String teenTalk(String sentence) { int i = 0; String result = ""; // Your like code like here while(i < sentence.length()) { while (i < sentence.length() && sentence.charAt(i) != ' ') { result += sentence.charAt(i); i++; } if(i < sentence.length()) { result += " like "; } i++; } return result; }