What will be printed out when the following code is executed…

What will be printed out when the following code is executed? from bs4 import BeautifulSouphtml_string = “”” Ryan’s dog page! Ryan’s page of … Dogs! Val Also Val Best dog ever! Val Also Val Another Val”””soup = BeautifulSoup(html_string, “html.parser”)tag = soup.find(“ul”)print(tag.find(“li”).text[1:2])