I have a jar of biscuits and every biscuits are words. I have to put and take biscuits. The putting i know how to make it but with the taking i have a problem.
Where is Jar's constructor? What unknown value will be stored in the member amount since you do not initialize it? Line 26 should use delete[] instead of delete. Why does line 30 have this->biscuits[amount--] = cookie;? Should you be putting a cookie into the jar during the Take method?
How can you test the Take method without having cookies in the jar? You should write the Put method first and test that.