Searching for a special number

Report a typo

In the code below an array of numbers is given to the search() function. Change it so that the function searches for the number in the array that is divisible by 11 and returns it.

Sample Input 1:

1 12 55

Sample Output 1:

55
Write a program in JavaScript
function search(numbers) {
// Write your code here
}
___

Create a free account to access the full topic