The warning is telling you you have a formatting directive (%d in this case) in a call to Println. This is a warning because Printlndoes not support formatting directives. These directives are supported by the formatted functions Printf and Sprintf. This is explained thoroughly in the fmt package documentation.
As you can plainly see when you run your code, the output is
Hello, playground %d 5
Because Println does what its docs say - it prints its arguments followed by a line break. Change that to Printf, which is likely what you intended, and you get this instead: