What is the value of the variable myAge when this program has run?
01 var my Age 16;
02 console.log("In fifty years, I will be");
03 console.log(myAge + 50);
04 myAge = myAge + 50;
05 console.log(myAge);
1. 50
2. 66
3. "66"
4. "myAge + 50"