using System;
using System.Linq;
class Program
{
static void Main() {
string[] array1 = {"c#", "c", "c++", "java", "python", "vb"};
string[] array2 = {"rust", "c", "c++", "go", "python", "nodejs"};
// get whats in array2 but not in array1
var result = array2.Except(array1);
Console.WriteLine(string.Join(" ", result));
}
}
/*
run:
rust go nodejs
*/