Питон возвращает ряды и столбцы из строки матрицы

array = [ [1, 2, 3], [4, 5, 6] ]
col2 = [ row[1] for row in array ]
print(col2)
Fantastic Frog