#!/usr/bin/perl -w use strict; my @array_of_arrays = ([1,2],[3,4],[5,6]); my $array_ref = \@array_of_arrays; print $array_ref->[0][1]; Ausgabe: 2