Examine the list from a Python program below. Which statement will display Oregon?
1) print(PNW_states[2])
2) print(PNW_states(2))
3) print(PNW_states[1])
4) print(PNW_states[0][2])