
public class ArrayExampleThree {
	int[] somePrimes = {2, 3, 5, 7, 11, 13};
	
	public void displayPrimes() {
		for (int i=0; i<somePrimes.length; i++) {
			System.out.println(somePrimes[i]);
		}
	}
	
	static public void main(String[] args) {
		ArrayExampleThree ex = new ArrayExampleThree();
		ex.displayPrimes();
	}
}
