以下のコードの実行結果はどうなりますか? ```javascript let firstName = "田中"; let lastName = "太郎"; let fullName = firstName + lastName; console.log(fullName); ```