Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 392 Bytes

basic_training_add_item_to_an_array.md

File metadata and controls

16 lines (12 loc) · 392 Bytes

Description

Add the value "codewars" to the websites array. After your code executes the websites array should == ["codewars"]

The websites array has already been defined for you using the following code:

$websites = []

My Solution

$websites << 'codewars'