I want to create a function that can check if 2 arrays are subsets or not, and if yes return true else return false
For example if : x = ["BOB","ADA","KEN"] y = ["KEN", "BOB"] return true
x = ["BOB","ADA","KEN"] y = ["KEN", "BOB" , "DAN"] return false
Any suggestions on how to create this function?