On the type checking section the following is recommended to see if a variable is an object: ``` typeof variable === "object" ``` The problem is that: ``` typeof null === "object" ``` So the recommendation should probably read: ``` typeof variable === "object" && variable !== null ```