/* -------------------------------------------- EXERCISE: 1) Add output statements in line 25 and 28 2) Can you explain the output? -------------------------------------------- */ // assign 1 to x var a = 1; // get a copy var b = a; function increaseByFive(a) { console.log("a: " + a); a += 5; console.log("a: " + a); } increaseByFive(b); // What is the value of a in this line // - use console.log? // What is the value of b in this line? // - use console.log?