Answer:
if means that like (if this happen it will come or not come answer)
Explanation:
sorry I don't know how to tell but plz reply if you understand or not.
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?