I am trying to create a function that inserts spaces between the characters of a string argument then return a new string which contains the same characters as the argument,
function insertSpaces(aString) { return aString.split('').join(' '); }