public class EasyInsert {

	public static void main(String[] args) {

		int[] myInts = { -3, 0, 2, 5, 9, 13 };
		
		//print out starting state of myInts:
		System.out.print("start:\t");
		for ( int a : myInts ) {
			System.out.print( a + ", ");
		}
		System.out.println();


		///////////////////////////////////
		// add your code after this line //
		///////////////////////////////////
		
		// insert value '8' in the appropriate place in myInts[]

		






		///////////////////////////////////////
		// finish your code before this line //
		///////////////////////////////////////

		//print out ending state of myInts:
		System.out.print("finish:\t");
		for ( int a : myInts ) {
			System.out.print( a + ", ");
		}
		System.out.println();

	}

}

