using System;
using System.Collections.Generic;
public class Program
{
public static void Main()
Console.WriteLine("Hello world.");
String[] vehicle_makes = new string[]{"Chevrolet", "X", " ", "Mazda", "", "Ford", " ", "GMC"};
int[] vehicle_years = new int[]{1990, 1987, 2015};
/*
Part 1: Write code that loops through the vehicle_makes array and prints the element if the element has a length greater than one character
Example input: {"Honda", " ", "", "Mitsubishi"}
Example output:
Honda
Mitsubishi
*/
Part 2: Modify the code from Part 1 to prevent whitespace from being printed
Part 3: Add 1 year to each year in the vehicle_years array. On the same line, print the original vehicle_year element and the modified (plus 1) element. Separate the elements with a comma.
Example input: {1990, 1987, 2015}
1990,1991
1987,1988
2015,2016
}