← Back to Challenges
advanced Time limit: 2:00

Register Juggling

Use named registers to rearrange three sections into alphabetical order.

Commands
"a"b"ap"bp

Register Juggling

Use named registers to rearrange three sections into alphabetical order.

Time
0:00
/ 2:00
Editor0 keys
1// Section C
2console.log("C");
3
4// Section A
5console.log("A");
6
7// Section B
8console.log("B");
-- NORMAL --register-juggling
Target
1// Section A
2console.log("A");
3
4// Section B
5console.log("B");
6
7// Section C
8console.log("C");
-- NORMAL --register-juggling
⚠ Guest mode — Sign in to save your progress and score