package com.example.generic;

public class TestStats {

	public static void main(String[] args) {

		Integer[] iNums = { 1, 2, 3, 4, 5 };
		Stats<Integer> iOb = new Stats<>(iNums);
		System.out.println("Integer array average value: " + iOb.average());

	}

}
