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