Your Submissions
You haven't submitted any code for this challenge yet. Solve the problem by passing all the test cases, and your submissions will appear here.
xxxxxxxxxx15
var assert = require('assert');function nthSmallestNumber(num) { const stream = makeStream(20); let current; for (let i = 0; i <= 5; i++) { current = stream.next().value; console.log('Next number is ', current); // fill in this method }}nthSmallestNumber(3);OUTPUT
Results will appear here.