/* ---------------------------------------------------------------- EXERCISE: 1) In line 17, in one statement, set all references to student 2) In line 20, in one statement, add a country property to student ---------------------------------------------------------------- */ var student = {school:"MIT", city:"cambridge", state:"masschusetts"}; // declare 3 students var student01; var student02; var student03; // in one statement, set all references to student // --- your code --- // in one statement, add a "country" property to all students // --- your code --- // same reference, same output console.log("student.country: " + student.country); console.log("student01.country: " + student01.country); console.log("student02.country: " + student02.country); console.log("student03.country: " + student03.country);