I have problem understanding arrays and loops, therefore this task is a bit confusing to me. Here\'s my stuff;
JSON
{
\"states\": [
Jquery can create elements and append to your documents with few lines of code.
You can create an empty list like this.
var mylist=$("
");
Then inside your for
loop, for each item, do something like this
mylist.append($("").text(item.name));
And finally append your newly built list to your document to get it displayed:
mylist.appendTo($("body"));