Display the Total Question Count at Welcome
<!-------------- WELCOME SCREEN --------------->
<div class='screen' id='welcome-screen'>
<h1>Welcome to our example game!</h1>
<h4 id="question-count">You have questions waiting for you.</h4>
<button class="start-btn">Start</button>
</div>function displayWelcome() {
$(".screen").hide();
$("#welcome-screen").show();
$("#question-count").html(`You have ${trivia.totalQuestions} questions waiting for you.`);
}