Hi guys I made this code so far, but I need to display the execution time into miliseconds using System.currentTimeMillis(), but am not sure how!
public class Assignment4 {
    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        long value = System.currentTimeMillis(); 
        int n=10;
        for(int i=0;i<n;i++)
           System.out.println(i);     
    }
}
 
     
     
    