以下のコードの実行結果はどうなりますか? ```javascript let count = 1; while (count <= 3) { console.log(count); count++; } ```