Using the knowledge in computational language in JAVA it is possible to write a code that creates an arraylist object named frogs and the arraylist should hold string s.
var frogs = new ArrayList<String>();
frogs.add("Frog 1");
frogs.add("Frog 2");
frogs.add("Frog 3");
System.out.println(frogs);
See more about JAVA at brainly.com/question/12975450
#SPJ1