given a list my_list = [[0, 1, 2], [3, 4, 5], [6, 7, 8]] , how would you access the value 7? group of answer choices my_list[3][2] my_list[2][2] my_list[3][1] my_list[2][1]