const reverseString = function(str) {
let newStr = str.split("").reverse().join("");
};
module.exports = reverseString;