A robot is placed in a 5x5 grid at square C5, initially facing North (indicated by the ▲ symbol).

| A | B | C | D | E | |
|---|---|---|---|---|---|
| 1 | |||||
| 2 | |||||
| 3 | |||||
| 4 | |||||
| 5 | ▲ |
The robot executes the following algorithm:
Forward(2)
TurnRight()
Forward(1)
TurnLeft()
Forward(1)
Draw the path of the robot through the grid by listing the sequence of cells visited in order (starting with C5), and state its final cell and facing direction.