If your JSON format is this:
{"array": [["111","112","113","114"], ["121","122","123","124"], ["131","132","133","134"]]}
you can access each value that you need using these expressions:
JSON.get("array.0.3") - will return 114
JSON.get("array.1.3") - will return 124
JSON.get("array.2.3") - will return 134