/* package whatever; // don't place package name! */
 
import java.util.*;

import java.lang.*;

import java.io.*;
 
/* Name of the class has to be "Main" only if the class is public. */

class Ideone

{

	public static void main (String[] args) throws java.lang.Exception

	{
		//Random rand = new Random();
	//	Random R = new Random();
	//	int rand  = rand.nextInt(1.23,1.34,1.45,1.56,1.67,1.78,1.89,2.00,2.12,2.23);
	//	String R = R.RandomString("jolly rancher", "lolipop","carmael candy","twizlers","sour patch","kitkat","gummies","skittles","milkyway","fuzzy peaches");
   String[] candy = new String[]{"jolly rancher", "lolipop","carmael candy","twizlers","sour patch","kitkat","gummies","skittles","milkyway","fuzzy peaches"};
   double[] candyprice = new double[]{1.23,1.34,1.45,1.56,1.67,1.78,1.89,2.00,2.12,2.23};
   System.out.println("the price of " + candy[0] + " is " + candyprice[0]);
	}

}
 