"Ben is" + " pretty," .repeat(4) .substring(0, -1) + " good."
The .substring(0, -1) simply removes the final unneeded comma from the string.
.substring(0, -1)