The Code
getValues
Here we take in the user's input and use it in the other functions that we call from here.
Rewind
In this function, we take the user's string and treat it like an array. We start from the final element, and walk backwards across it pushing each item to a new array which is the new, reversed string.
displayMessage
We start here by making the previously transparent alertMessage div visible to the user, then we build out the HTML to be displayed based on the user input and their reveresed string. Finally we return the constructed HTML back to the getValues function to be displayed.