The issue at hand is quite straightforward.
Here is a sample for displaying a single variable in a div with the "container" ID:
let first = 5;
document.getElementById('container').innerHTML = first;
<div id="container"></div>
However, I am interested in achieving this for multiple variables or signs like this:
let first = 5;
let second = 10;
document.getElementById('container').innerHTML = first "+" second;
<div id="container"></div>
What would be the best approach to make this work?