以下のコードを実行した時の出力は何ですか? ```ruby class Animal def speak puts "動物が鳴きます" end end class Cat < Animal def speak puts "ニャーと鳴きます" end end cat = Cat.new cat.speak ```