const reverseString = str => [...str].reverse().join(''); module.exports = reverseString