With the given file: console.js ```js const repl = require('repl'); repl.start('> '); ``` Then running in nodejs 11 & 12: ```shell $ node console.js > console.log({} instanceof Object) false ``` But running with nodejs 10: ```shell $ node console.js > console.log({} instanceof Object) true ``` I am expecting to be `true` in all cases, did I miss something?