```:javascript= let name = "Zhekai Zhang"; let healthPoint = 100; let experience = 1; let isHardworking = false; // Zhekai is new coder and want to learn coding. getTime(); // <<< 6am // Everyday at 6am // he gets up and starts to learn and practice coding. name = "Anonymous coder"; healthPoint = healthPoint - 1; // Coding is hard. experience = experence + 1; isHardworking = true; let MSTU5003 = { bug: 0, threatType: "none" program: ["FCC","Doodle","Project"] } // He took MSTU5003 class. // He is trying to figure out how to code // and make sure there is no bug. let numChecked = 0; function checkBug(program) { // if there is bug // then coder will fix it and lose 1 health point // but gain 1 experience. // else the coder will check for bug numChecked++; } function fixBug() { if experience > MSTU5003.bug then MSTU5003.bug = 0; threatType = "none"; else experience = experience + 1; healthPoint = healthPoint - 1; } checkBug(program); // First check, all is calm. // He completed the FCC assignment // and watched all class recording // He felt he is on the right track. // However, here comes the Doodle project..... MSTU5003.bug = 99999999; MSTU5003.threatType = "Doodle"; // He found there are 99999999 bugs in his Doodle project. checkBug(Doodle); // He is trying to fix those bugs. // He can't fix those 99999999 bugs // because he only have 1 experience // and 100 health point sleep(); // He died, and slept forever. ```