Hey, HI The code your trying is correct.But,you have to change the order of the output.
Ans:
let john = true;
let thor = 'asgard';
let falcon = 1001;
let ghost;
console.log(typeof ghost);
console.log(typeof john);
console.log(typeof thor);
console.log(typeof falcon);