//make10to20 in Java//
In the following code, create an array of integers and initialize it to contain the values from 10 to 20, inclusive.
To be clear, the item at index 0 should be 10, and the item at the last position in the array should be 20. Tip: you may want to use a counter-controlled for loop.
public int[] make10to20()
{
}