Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.util.Arrays;
import java.util.Collections;

public class Main {
    public static void main(String[] argv) throws Exception {

        String[] array = new String[] { "a", "b", "c" };

        Collections.shuffle(Arrays.asList(array));
    }
}