Indexing the return value of a function
Today's challenge:
f=Function({}, {1,2,3});
tmp=f();
y=tmp[1]; // works
x=f()[1] // doesn't work
understanding the issue helps a lot to understand how JSL works : - )