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