change binding ``` todoList = element.all(by.repeater('todo in todos')); ``` to ``` todoList = element.all(by.repeater('todo in todoList.todo')); ``` change binding ``` var addTodo = element(by.model('todoText')); ``` to ``` var addTodo = element(by.model('todoList.todoText')); ```