Which snippet could you insert to this code to print "swim" to the console?
<pre><code>let animals = ["eagle", "osprey", "salmon"];let key = animal => animal === "salmon";if(/* Insert Snippet Here */){
console.log("swim");}</code></pre>