Which snippet could you add to this code to print "food" to the console?
<pre><code>class Animal {
static belly = []; eat() {
Animal.belly.push('food'); }
}
let a = new Animal();a.eat();console.log(/* Snippet Here */); //Prints food</code></pre>