function reverseString() { const myString = 'Hello'; const splits = myString.split("").reverse().join(""); }