What is the result in the console of running the code shown?
<pre><code>var Storm = function () {};Storm.prototype.precip = 'rain';var WinterStorm = function () {};WinterStorm.prototype = new Storm();WinterStorm.prototype.precip = 'snow';var bob = new WinterStorm();console.log(bob.precip);</code></pre>