Javascript variable Exercise
function test() {
let a = "3";
let b = "8";
/****Do not change the code above 👆/
//Write your code on lines 7 - 9:
let c = a;
a = b;
b = c;
/****Do not change the code below 👇/
console.log("a is " + a);
console.log("b is " + b);
}