We subset matrices by typing the row and then the column indices inside [].
Try to get the 3rd row and second column element from my_matrix.
Nice! As with vectors, we subset matrices using brackets in the following format: [row_index , column_index].
Didn't we want to type the row index followed by the column index?