Insert the parameter declaration into the method header.
You've already written
public class QuizClass
{
private int instanceVar;
public void doSomething ()
{
}
}
and
String theParameterNow put them together as
public class QuizClass
{
private int instanceVar;
public void doSomething (String theParameter)
{
}
}