var s = userInput[0]; var rev = []; for(let i=0;i<s.length;i++) { rev.push(s[s.length-1-i]); } console.log(rev.join(""));