// const nemo = ['nemo'];
// const everyone = ['dory', 'bruce', 'marlin', 'nemo', 'gill', 'bloat', 'nigel', 'squirt', 'darla', 'hank'];
// const largeArray = new Array(1000).fill('nemo')
// function findNemo(arr) {
// for(let i = 0; i < arr.length; i++) {
// if(arr[i] === 'nemo') {
// console.log('Found NEMO!!!');
// }
// }
// }
// findNemo(largeArray); // O(n)
// boxes array
// const boxes = [0,1,2,3,4,5];
// // function to log first two boxes
// function logFirstTwoBoxes(boxes) {
// console.log(boxes[0]); // O(1)
// console.log(boxes[1]); // O(1)
// // function runs O(2) operations
// }
// // run logFirstTwoBoxes
// logFirstTwoBoxes(boxes);