以下のコードで、変数`name`と引数`person`の関係について正しい説明はどれですか? ```ruby def introduce(person) puts "私は#{person}です" end name = "田中" introduce(name) ```