The procedure Draw (length, direction) is used to draw a line segment length units long in a given direction (left, right, up, or down), starting at the current cursor position. The cursor is then repositioned at the end of the line segment that was drawn. Consider the following program, where the cursor starts in the upper left corner of a grid of dots. The dots are spaced one unit apart.
- Draw (1, right)
- Draw (2, down)
- Draw (1, left)
- Draw (1, right)
- Draw (1, up)
- Draw (1, left)
Which of the following represents the figure that is drawn by the program?