Associative Array from variables
Can somebody help me with a correct syntax to create Associative Array from variables?Now I have this: a = {"a1", "a2", "a3"};
b = {"b1", "b2", "b3"};
AB = [
"AA" => a,
"BB" => b
];
AB["AA"];
It returns: /*:
a
I want it to return:/*:
{"a1", "a2", "a3"}
I tried different combinations of Eval List(), Eval Expr(), Expr() and Eval(), but no luck. Thanks!