Return one element from a list to a variable

Return one element from a list to a variable

I want to get one element from a list into a variable. See the example below. How would I just get the VALUE for "Company" field in the below example? I can't seem to figure this out in CRM's script builder. I think in Creator you would do:

company = crmResp.get("Company")

However, the 'get' method does not seem to be supported.


Example

crmResp = zoho.crm.getRecordById("Leads", 231356000000121001);

Response from CRM

[
{"Lead Owner":"Test","Phone":"34567","LEADID":"231356000000121001","Country":"country","City":"city",
"Created By":"test","No of Employees":"0","MODIFIEDBY":"231356000000034003","Annual Revenue":"0","Email":
"test@gmail.com","Created Time":"2012-03-12 18:33:48","Modified By":"sampleapp","SMOWNERID":"231356000000
034003","SMCREATORID":"231356000000034003","Email Opt Out":"false","Company":"test","Last Name":"test","First
Name":"test","Modified Time":"2012-03-12 18:33:48"} 
]