$.getJson Trouble

$.getJson Trouble

Hello Out There,

I'm having some trouble using this, seemingly simple, $.getJson method. I've been running some tests to see if I'm getting the proper information and I seem to be only getting 'undefined' back. My jquery is this:

  1. $.getJSON("http://myxpens.com/chart.php?SessionUserId=4",
  2. function (data){ alert("this is a test: " + data.TEST) });

and the corresponding result form the URL GET is this:

  1. [{" clothes":150},{" food":15},{" home":50},{" school":100},{" vanity":35},{" weddings":100},{"TEST":999}]
I had expected to get a simple alert with "this is a test: 999" but only receive back "this is a test: undefined".

(please ignore the leading black spaces in the json...I  know they are there, they will be fixed  )

Regards,
DPM