const reverseString = (string) => { return string.split('').reduce((reversed, character) => character + reversed, '') }