When looking at the method below, what sort of data should it return?

public void hop3Times()
{
    this.hop();
    this.hop();
    this.hop();
}
no return statement is needed
  • this should return a boolean
  • this should return an int
  • this should return a double

There are no hints for this question