Head's Up: JavaScript is either turned off or not working properly in your browser. Some parts of this page may not work properly.
function randomSpacesBetween (min, max) { const spaceCount = Math.floor(Math.random() * (max - min + 1) + min); const theSpaces = Array(spaceCount).fill(' ').join(''); return theSpaces; }