We actually need to traverse our grid twice - once to break the walls, then once again when we actually solve the maze (which we'll do in the next lesson).
As such, let's add a method to reset the visited property of all the cells in the maze so we can reuse it when solving the maze.
Run and submit the CLI tests.