my @arr = (['a','b','c'], ['h','i','j'], ['x','y','z']); for (map $_->[0], @arr) { # $_ now holds the current value of column 1 (index 0) }