On the far right side of the instruction line, we can see the machine language code for the instruction (in this case: b (move immediate to register), 4 (8-bit register AH), 0e (immediate value $0x0e)).
Before the machine language code, we see a disassembly of it into assembly language. The instruction mov ah, 0x0e looks a lot like what our first instruction in the printing code was from step 2, much clearer than the machine code, but the syntax is a bit unfamiliar. We can switch between AT&T and Intel assembly syntax with the command disassemble switch-mode. Once we've done so, we can use the u command to display an instruction, in this case, repeating the previous prompt in a more familiar format. Multiple instructions can be displayed with the / modifier to the command.