I have been attempting to add a line break after each statement in this code snippet. I tried using "/r/n" and "<-br>", but neither of them are giving the desired result.
**else {
para.textContent = num + ' squared is ' + squared(num) + '. ' +
num + ' cubed is ' + cubed(num) + '. ' +
num + ' factorial is ' + factorial(num) + '.';
}**