1. Complete the following static method. Return a string for the name of the month.
public static String monthName(int month)
{
//your code
//1. make an array of String. Be careful that arrays are 0 based!
//2. return by accessing the array
}
2. Go to
http://codingbat.com/prob/p229948 and do the swapEnds exercise
paste your code