Dim doc As New HtmlDocument()
doc = Web.Load("https://motherless.com/random/image")
Dim Img as HtmlNode = doc.DocumentNode.SelectSingleNode("//div[@id='mediaspace-image-wrapper']/a/img")
Console.WriteLine(Img.Attributes("src").Value)
Console.WriteLine("Not Found !!")