Welcome to the Maze Puzzle Game! Your mission is to guide the **robot** through the maze using command lines. Each command you enter will move the robot in a specific direction.
robot.moveRight(n): Move the robot right by `n` cells. Example: robot.moveRight(3) moves the robot 3 cells to the right.robot.moveDown(n): Move the robot down by `n` cells. Example: robot.moveDown(2) moves the robot 2 cells down.robot.moveLeft(n): Move the robot left by `n` cells. Example: robot.moveLeft(1) moves the robot 1 cell to the left.robot.moveUp(n): Move the robot up by `n` cells. Example: robot.moveUp(4) moves the robot 4 cells up.