A taxicab starts at (1, -2) on the grid. It goes 3 blocks west and 4 blocks north to pick up a passenger. Then it goes 8 blocks east and 1 block south and drops off the passenger. Which rule will bring the taxicab back to its starting position?

(x, y) ---> (x - 5, y - 3)
(x, y) ---> (x + 3, y + 5)
(x, y) ---> (x + 5, y + 3)
(x, y) ---> (x - 3, y - 5)