Using a const for the slot key

Shouldn’t this create the table {hello : world} ? It creates { VAL : world}.

const VAL = “hello”;
mytable <- { VAL = “world” };

What is the best way to create a table using constants for the slot keys?

Try { [VAL] = “world”}