hello all,the practice assignment im working on is to have two functions that will search each character of two strings and compare them to each other, if any characters are different the functions will return false. the two functions do the same thing, but they take a different approach. One is iterative (super easy) and one is recursive (super hard). here are my two functions. I Can't figure out why the recursive is returning true when I type word 1: abcd, and word 2: abzd. Any input would be appreciated :)