const dealWithData = (html) => {
const $ = cheerio.load(html);
const urlMeme = $("._2_tDEnGMLxpM6uOa2kaDB3.ImageBox-image.media-element._1XWObl-3b9tPy64oaG6fax");
const indexValue = 0;
console.log(`Source is:
${urlMeme[indexValue].attribs.src}`);
};