how come I get this error when I try to put a scrollview in a group?

So this is some example code…

[lua]local widget = require “widget”
local scrollView = widget.newScrollView{
width = 256,
height = 320,
hideBackground = true,
scrollWidth = 768,
scrollHeight = 1024,
maskFile=“mask.png”,
listener = scrollViewListener
}

local myObject = display.newImage(“desperate-dan.jpg” )
scrollView:insert( myObject )

–ITS THE BELOW BIT THAT CAUSES THE ERROR
local instructionsGroup = display.newGroup()
instructionsGroup:insert( scrollView )[/lua]

When I run this script I get the below error. any ideas how to correct it?

[lua]‘insert’ [/lua]
[import]uid: 102413 topic_id: 26688 reply_id: 326688[/import]

try inserting the actual group.
[lua]local instructionsGroup = display.newGroup()
instructionsGroup:insert( scrollView.content )[/lua] [import]uid: 64174 topic_id: 26688 reply_id: 108148[/import]

I’ve just subscribed and was using 704 where I had to do
[lua]:insert(scrollView.view)[/lua]

Although it seems to have changed now to leaving out the .view
Don’t know if that helps [import]uid: 142733 topic_id: 26688 reply_id: 108151[/import]

Thanks guys!
Thats what was missing “view” thanks originator.
[import]uid: 102413 topic_id: 26688 reply_id: 108338[/import]