GLFW Window help

I am working on a Game where, i load a score screen after the game ends. I am using GLFW window for my game. But i have a confusion. Should i make a separate window for score screen and replace it in place of game window or what is the feasible way to do that using GLFW ?

Normally you just stop drawing the game scene, and draw the score screen instead, all in the same window.