How to create an empty array named by variable and use it only by referring to it thru the variable name?
e.g. array named empty
$empty = @()
$empty -is [array]
True
versus:
$arrayname='empty'
${$arrayname}=@()
$empty -is [array]
False
AND
$empty+='hello'
versus
${$arrayname}+='hello'
maybe you want this: