in reply to getting in trouble avoiding global variables
In words: $items2show_ref is a reference (->), to an array ([...]), that has an element at offset ARRAYX that is a reference to an array (@{ ... }), onto which you wish to push $value:
push @{ $items2show_ref->[ARRAYX] }, $value;
|
|---|