I know the task will not pass due to missing Date objects. Although I thought it will meet at least most of the requirements but it doesn't, even a single one.
Anyone can tell me what's wrong? And how did you use
Date class to measure the time? Because obviouslySystem.currentMillis(); would be easier.. package com.codegym.task.task33.task3310;
import java.math.BigInteger;
import java.security.SecureRandom;
public class Helper {
public static String generateRandomString() {
return new BigInteger(130, new SecureRandom()).toString(36);
}
public static void printMessage(String message){
System.out.println(message);
}
}