So this is my version of the code let str = addOne + " " + addTwo + " " + addThree + " " + addFour + " " + addFive
Is there a simpler approach to adding spaces when combining strings?
Just use Template literals (Template Strings)
let str = `${addOne} ${addTwo}`