tracks/javascript/exercises/simple-cipher/README.md in trackler-2.2.1.10 vs tracks/javascript/exercises/simple-cipher/README.md in trackler-2.2.1.11

- old
+ new

@@ -45,10 +45,10 @@ Given the key "aaaaaaaaaaaaaaaaaa", encoding the string "iamapandabear" would return the original "iamapandabear". Given the key "ddddddddddddddddd", encoding our string "iamapandabear" -would return the obscured "lpdsdqgdehdu" +would return the obscured "ldpdsdqgdehdu" In the example above, we've set a = 0 for the key value. So when the plaintext is added to the key, we end up with the same message coming out. So "aaaa" is not an ideal key. But if we set the key to "dddd", we would get the same thing as the Caesar Cipher.