Yield* Statement Lab

Medium
25.0% Acceptance

In this lab, you will practice using the yield* statement within JavaScript's generator functions. Generator functions are a special type of function which can be paused and resumed, allowing you to work with lazily evaluated sequences of values. The yield* statement enables a generator function to delegate the execution of its iterable content to another generator function.

Your task is to create two generator functions, one that yields simple values and another that uses the yield* statement to yield the values from the first function.