const num1 = 5;const num2 = 3;const sum = num1 + num2;console.log('The sum of ' + num1 + ' and ' + num2 + ' is: ' + sum);