Which snippet could you add to this code to print "{"type": "tiger"}" to the console?
<pre><code>let cat = { type: "tiger", size: "large" };let json = /* Snippet here */;console.log(json); // print {"type":"tiger"}</code></pre>