xhtml
 

Hint

The next thing you need to do is provide the test method with two argument variables to 'catch' the strings that are being passed to it, so change its first line to:

   void test(String s1, String s2)

You can use any names you like instead of s1 and s2. Now you are ready to put in the code which carries out the test.


Back