以下のコードの実行結果はどうなりますか? ```ruby class Animal def self.species_info "動物の分類情報" end def name "名前未設定" end end puts Animal.species_info ```