const reverseString = function(pass) { return pass.split("").reverse().join(""); }; // Do not edit below this line module.exports = reverseString;