import Foundation
let array1 = ["c#", "c", "c++", "java", "python", "vb", "swift"]
let array2 = ["rust", "c", "c++", "go", "python", "nodejs"]
let set1 = Set(array1)
let result = array2.filter { !set1.contains($0) }
print(result.joined(separator: " "))
/*
run:
rust go nodejs
*/