parsing json using jsonparse gives [object, Object]

parsing json using jsonparse gives [object, Object]

Hi Everyone trying to learn how to use API data but running into the following problem.

I am using:

  1.     
  2.                $.each(outputDUPCount, function( key, value){
  3.               console.log(key + ": " + value );
  4.                  });

 but my output code gives me:

  1. 0: [object Object]
  2. jsonParse.js:12 1: [object Object]
  3. jsonParse.js:12 2: [object Object]
  4. jsonParse.js:12 3: [object Object]
  5. jsonParse.js:12 4: [object Object]

Can someone tell me how do i parse the actual json object to show me the info inside?