The first step in creating the maze generation function is to create a semi-random path from the start cell to the finish cell. - [x] Each cell in the path is colored and given some unique `textContent` - [x] Each cell in the path is touching exactly two other cells in the path (with the exception of the start and finish cells) - [x] Works for mazes from size 10 x 10 - 25 x 25 - [x] Path is pseudo-random (random other than the rules above) ## Mockup 
The first step in creating the maze generation function is to create a semi-random path from the start cell to the finish cell.
textContentMockup