function compare (a,

{
console.log(a + " < " + b , a < b);
}
compare('a', 'b');
compare('a', 'A');
compare('apples', 'oranges');
compare('apples', 'applications');
compare('app', 'apples');
compare('hello', 'hello');
I don't get what the "<" i put anyword inside of it and it prints out all the compares but I take it out and only 4 work.
I am also looking for a tutor thank i can ask questions sO i don't have to make a post everytime I need help with something.