以下のコードの実行結果はどうなりますか? ```javascript const age = 16; if (age >= 18) { console.log('成人です'); } else { console.log('未成年です'); } ```