Complete the static reverseHelper method so that the reverse method returns a String that is the reverse of the parameter s.

The helper method should build up the reversed string like this:

reverseHelper("fred", "")
= reverseHelper("red", "f")
= reverseHelper("ed", "rf")
= reverseHelper("d", "erf")
= reverseHelper("", "derf")
= "derf"