xhtml
 

Hint

The first thing you need to do is to get at the strings which the user of your program has typed in. You may remember that these are in the args variable. You want to pass the strings to the test method, so change the line that calls test so that it reads:

   program.test(args[0], args[1]);

Back