以下のコードの実行結果はどうなりますか? ```javascript const ageInput = document.getElementById('age'); // ユーザーが "25" を入力した場合 const age = ageInput.value; console.log(typeof age); ```