The value of $a is: hello
The value of $hello is: Hello Everyone.
The value of $$a is: Hello Everyone.
That works like this $($a) = $hello = Hello Everyone.
Question:
Does $$var[1] mean:
Get the value of the element at position 1 then evaluate dynamically?
Evaluate dynamically and then get the element at position 1?