Write typeChecker(value) returning a string describing the value's type. It must return 'null' for null (not 'object'), 'array' for arrays, 'date' for Date instances, and fall back to typeof for everything else.
typeChecker(value)
typeof
Click Run to test your code