Im trying to determine the location of a in a array. Im not really sure how to handle this case
const expect = require('chai').expect;
const answers = require('../src/arrays');
describe('arrays', function() {
    let a;
    beforeEach(function() {
        a = [ 1, 2, 3, 4 ];
    });
    it('expect determine location of a in array', function(expect) {
        expect(answers.indexOf(a, 3)).to.eql(2);
        expect(answers.indexOf(a, 5)).to.eql(-1);
    });
 
     
    