Say I have something like:
$funkyHash = @{
"Z28" = @(13251, 13458, 78910)
"Z14" = @(12356, 12348)
"z15" = @(12344)
}
How do I for instance, pull out the "z15" array, add a value, lets say 456, and make sure that it results in:
$funkyHash = @{
"Z28" = @(13251, 13458, 78910)
"Z14" = @(12356, 12348)
"z15" = @(12344, 456)
}
...within funkyHash?
$funkyHash['z15'] += 456