A callback is a function passed into another function. Instead of only describing that idea, this lesson makes the callback run three times and shows the collected results.
function repeatAction(callback) {
callback();
callback();
callback();
}
Call the callback three times inside repeatAction.