I have this recursion here, when I input "ello", the output returns "ello". I thought it would return "ellllloo". Am I not following the recursion right? It's keep calling FN(str.substring(1));
return str.substring(0, 1) + FN(str.substring(1));