I have already tried this SO Post
But, i want to achieve the following:
Component
abc = [10,20,30,40,50]
cde = [0,1,2,3,4]
Template
{{#each cde as |num|}}
{{ abc.[num] }}
{{/each}}
Expected Output:
10 20 30 40 50
But, it doesn't output anything. What is wrong?