Moreover The JSON format you try to use is not correct and is likely the reason why your array is empty to begin with.
In Construct 2, if you try to get the JSON out of an array, you'll notice the format is as such (in this example, it is a simple 10,1,1 array so mainly 10 cells on the X axis only) :
{"c2array":true,"size":[10,1,1],"data":[[[value]],[[value]],[[value]],[[value]],[[value]],[[value]],[[value]],[[value]],[[value]],[[value]]]}[/code:3qeiicui]
The JSON data you quoted have nothing to do with that format.
You can quickly check in the [url=https://www.scirra.com/manual/169/debugger]debugger[/url] on execution and see that your array is likely empty even when it should contain the content of the JSON file.