Hi, I am a little confused on what to do. I'm supposed to recombine 2 words like this... take the first half of word1, take the second half of word2, then concatenate the two halves and return the new string. So, if word 1 was "apple" and word2 was "pear" then it would come out to "apar". Then if word1 was "pear" and word2 was "apple" then it would come out to "peple". I was thinking of doing something like getting the length of word1, dividing it by 2, then taking the first half of it and doing the same to word2 except taking the second half and adding them together. Or maybe I should use subString. I'm confused :confused:

