## Change ### Instructions Create 2 functions: - `get`: a function that takes a key and returns the corresponding value from the `sourceObject`. - `set`: a function that takes a key and a value. Update the value for the corresponding property of the `sourceObject` and return the value. ### Notions - [Functions](https://nan-academy.github.io/js-training/examples/functions.js) - [Data Structures](https://nan-academy.github.io/js-training/examples/data-structures.js) - [Get](https://nan-academy.github.io/js-training/examples/get.js) - [Set](https://nan-academy.github.io/js-training/examples/set.js) ### Code provided > The provided code will be added to your solution, and does not need to be submitted. ```js const sourceObject = { num: 42, bool: true, str: 'some text', log: console.log, } ```