JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
cleanup
[four-random-words.git] / four-words.coffee
index 433ddbb..5124253 100644 (file)
@@ -16,6 +16,5 @@ async.parallel [
                password = []
                for i in [0..3]
                        random = rnd[i] << 16 | rnd[i+1] << 8 | rnd[i+2]
-                       console.log rnd[i], rnd[i+1], rnd[i+2], random
                        password.push words[random % words.length]
                console.log password.join ' '