+ err = server.Serve(ln)
panic(err)
}
+diff --git a/gameapi/handler.go b/gameapi/handler.go
+index d67cf94..108e7e1 100644
+--- a/gameapi/handler.go
++++ b/gameapi/handler.go
+@@ -101,7 +101,7 @@ func (h *handler) handleIndex(rw http.ResponseWriter, req *http.Request) {
+ for {
+ w1 := strings.ToLower(h.allWords[h.rand.Int63n(int64(len(h.allWords)))])
+ w2 := strings.ToLower(h.allWords[h.rand.Int63n(int64(len(h.allWords)))])
+- id := fmt.Sprintf("%s-%s", w1, w2)
++ id = fmt.Sprintf("%s-%s", w1, w2)
+ if _, ok := h.games[id]; !ok {
+ break
+ }