What is the answer for 2.8.10 word games? This is what I have so far, but I can’t seem to be able to figure out the bananaSplit public strings.

Answer:
public String bananaSplit(int insertIdx, String insertText) {
return word.substring(0, insertIdx) + insertText + word.substring(insertIdx);
}
Explanation:
Do you have the other parts of the WordGames class?