First, create your Random object

Random gen = new Random();

You have three options, and you need to randomly choose one.

int areaCodeType = gen.nextInt(3);

Then, based on that randomly...