Need to get a word from the site http://sluchajnoe.ru/slovo.php
var req = require("request"); var iconv = require('iconv-lite'); req("http://sluchajnoe.ru/slovo.php", function (error, res, body){ var wordRandom = iconv.decode(new Buffer(body), "UTF-8"); wordRandom = wordRandom.replace(/<font size="200%">(.+)/gi, function(match, p1){ console.log(p1); return p1; }); }); The code gives krakazyabra. What needs to be fixed?