What percentage of the time does the following method return true?

public boolean sometimesTrue()
{
    Random generator = Random.generator();
    if (generator.nextInt(100) < 55)
    {
        return true;
    }
    return false;
}
55% of the time
  • 54% of the time
  • 45% of the time
  • 44% of the time

There are no hints for this question