Getting a row#
### The following 3x4 image is given as a 2D list ```rgb_rows```.
<br>
What code will print the RGB information in the following image:
<br>

1. [ ] ```
for column in range(4):
print(rgb_rows[1][column])
```
2. [ ] ```
for column in range(4):
print(rgb_rows[3][column])
```
3. [x] ```
for column in range(4):
print(rgb_rows[2][column])
```
4. [ ] ```
for column in range(4):
print(rgb_rows[0][column])
```