Files
2024-01-24 19:52:36 +01:00

458 B

id, title, challengeType, dashedName
id title challengeType dashedName
65797670e0c0d016f17e7660 Schritt 7 20 step-7

--description--

Now, at the bottom of your code, print copper.

--hints--

You should print copper at the bottom of your code.

assert.match(code, /print\s*\(\s*copper\s*\)/)

--seed--

--seed-contents--

--fcc-editable-region--
copper = {
    'species': 'guinea pig',
    'age': 2
}
copper['food'] = 'hay'

--fcc-editable-region--