Monochromatic Debugging: Where the Colors Don't Work

	var colorsDoNotWork = false;
		/* The colors don't work, and we're stuck in this monochrome world. */
		/* The code looks like this: */
		function monochromeFunction() {
			return "This is the wrong color!";
		}
		
		/* We're trying to fix it, but it's hard when the colors won't cooperate. */
		if (monochromeFunction() === "This is the wrong color!") { 
			document.body.style.backgroundColor = "This is not the right color!"; 
		} 
		
	

Don't worry, we're working on it! In the meantime, try debugging the monochrome code to see if you can find the solution.

Monochrome Hacking