In an attempt to utilize the key value from ng-repeat as an extension of another scope.arrayResult, I aim to achieve arrayResult.q1/q2/q3 etc...
<ul ng-repeat="(key,x) in data">
<li><h4>Question: {{x}}</h4>
<p>{{ arrayResult.[key][0].value }} People Voted: {{ arrayResult. [key][0].label }}</p>
</ul>
Using the key value within angular brackets has shown success.
<p>{{key}}</p>
What should a proper expression look like when utilizing the key value from ng-repeat, resulting in:
arrayResult.q1[0].value ?
The desired output would show q1 after using the [key] value specified in ng-repeat