The following code produces an error in the Chrome console `Cannot read property 'toString' of undefined` but no error shows up in the editor console. ```javascript let txt; function setup() { createCanvas(400, 400); text(txt,100,100); } ```