N1ql select query assistance for array field

Hi All,
Below is the document sample. for which I need assistance in writing a select query where Keys field contains Kids and Under5 and Category as Clothes.

{
“Sample”: {
“Content”: {
“priority”: 0
},
“Keys”: [
“Kids”,
“Under5”,
“Under10”
],
“Category”: “Clothes”
}
},

Regards
Manoj

SELECT * FROM default WHERE `Category` = "Clothes" AND 
ANY v IN `Keys` SATISFIES v = "Kids" END AND ANY v IN `Keys` SATISFIES v = "Under5" END;

Thank you! The output of the query is as expected.

Regards,
Manoj.