Suppose we want to extract the text content of the first no…

Suppose we want to extract the text content of the first node of Georgia Tech’s homepage, using the Jaunt package as we demonstrated in class, what should be the missing code in the following code snippet? UserAgent agent = new UserAgent();agent.visit(“http://www.gatech.edu”));_______________________String text = element.getTextContent().trim();System.out.println(text);