I am confused as to why this is alterting as "undefined". Any help would be much appreciated as I am stuck on an important project.
JavaScript
$.getJSON("item-data.json", function(results) {
        $.each(results, function(index) {
            alert(results[index].CatalogEntryView);
        });
    });
JSON Data is a BIG file. It starts out with the first object defined as "CatalogEntryView" with a long list of nested properties.
 {
   "CatalogEntryView": [
     {
      "CustomerReview": [
Using the following code recommended in one of the answers below returns the following to the console:
Recommended Code
 $.each(results.CatalogEntryView, function(index, item) {
        console.dir(item.CustomerReview); 
 });
    
CatalogEntryView, then that is whatindexis going to be. Soresults[index]is going to beresults['CatalogEntryView']and thusresults['CatalogEntryView'].CatalogEntryViewis undefined as there is no such property