1//The find() method returns the value of the first element in the provided array that satisfies the provided testing function.
2const array1 = [5, 12, 8, 130, 44];
3
4const found = array1.find(element => element > 10);
5
6console.log(found);
7// expected output: 12