Im really new to JavaScript and I was wondering how would I be able to insert multiple varibles into a string?
var adjective1 = 'amazing';
var adjective2 = 'fun';
var adjective3 = 'entertaining';
var madLib = "The Intro to JavaScript course is (adjective1). James and Julia are so (adjective2). I cannot wait to work through the rest of this (adjective3) content!";
console.log(madLib);