public class ChallengeTwo {
public static bool Challenge1(int[] b) {
Console.WriteLine("here is a number");
Console.WriteLine("here is a number");
Console.WriteLine("here is a number");
public static bool Challenge2(char[] a) {
public static void Challenge3(int[] a) {
public static int[] Challenge4(int a, int b, int c, int d) {
public static int[] Challenge5(int[] a, int[] b) {
public static void Main() {
Console.WriteLine("This is the output of your challenge 1: " + Challenge1(testInt));
Console.WriteLine("This is the output of your challenge 2: " + Challenge2(testChar));
Console.WriteLine("This is the output of your challenge 3:");
Console.WriteLine("This is the output of your challenge 4:");
int[] result = Challenge4(a,b,c,d);
Console.WriteLine("This is the output of your challenge 5:");
int[] result2 = Challenge5(testInt,testInt2);