When in insert mode, if you press CTRL+o then vim allows you to execute one normal mode command. Pressing p causes yankstack to append the text of an echo command.
Buffer:
hello world
In normal mode, press ^ , yw , o , <C-o>, p
Result buffer:
hello world
hello :echo ""
Expected:
hello world
hello