<?php$array = [[1, 2], [3, 4], [5, 6]];foreach($array as list($impair , $pair)){ echo "$pair is pair; $impair is impair", PHP_EOL;}?>