I am currently practicing using Javascript/Dojo. However, I have an error that I am unable to solve:
Uncaught SyntaxError: Unexpected token o
You're trying to parse a JavaScript object. JSON.parse is for parsing a JSON string representing a JavaScript-like object.
JSON.parse
Just skip the parsing altogether:
alert(data.list[1].Name);
On a related note: you might be interested in reading There's no such thing as a "JSON Object".