const reverseString = function(word) {
	return word
		.split('')
		.splice('')
		.reverse()
		.join('');
}

module.exports = reverseString